about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-07-18 08:25:59 +0000
committerEric Wong <e@80x24.org>2015-07-18 08:25:59 +0000
commitc3bb7810709a99a9886c7f96aed6fa62690a12cb (patch)
tree3bb4bc39af7ab665168efd8385b4c1b8eb10ec8e /test
parent2f3c9d105ab13c730c497da7d8c63f6ed11cf91f (diff)
downloaddtas-c3bb7810709a99a9886c7f96aed6fa62690a12cb.tar.gz
Seems a bit stupid, but oh well.
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