about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_parse_freq.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/test_parse_freq.rb b/test/test_parse_freq.rb
new file mode 100644
index 0000000..1dcd8d6
--- /dev/null
+++ b/test/test_parse_freq.rb
@@ -0,0 +1,18 @@
+# Copyright (C) 2015 all contributors <dtas-all@nongnu.org>
+# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
+require './test/helper'
+
+require 'dtas/parse_freq'
+
+class TestParseFreq < Testcase
+  include DTAS::ParseFreq
+
+  def test_parse_freq
+    assert_equal(4000, parse_freq('4k'))
+    assert_equal(-4000, parse_freq('-4k'))
+    assert_equal(-4900, parse_freq('-4.9k'))
+    assert_equal(-4900, parse_freq('-4.9k', :int))
+
+    assert_equal(4900.5, parse_freq('4.9005k', :float))
+  end
+end