From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/rexml/test_functions_number.rb | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 jni/ruby/test/rexml/test_functions_number.rb (limited to 'jni/ruby/test/rexml/test_functions_number.rb') diff --git a/jni/ruby/test/rexml/test_functions_number.rb b/jni/ruby/test/rexml/test_functions_number.rb new file mode 100644 index 0000000..0b5ec92 --- /dev/null +++ b/jni/ruby/test/rexml/test_functions_number.rb @@ -0,0 +1,34 @@ +require 'rexml/document' +require 'test/unit' +require 'rexml/functions' + +module REXMLTests + class TC_Rexml_Functions_Number < Test::Unit::TestCase + + def test_functions_number_int + telem = REXML::Element.new("elem") + telem.text="9" + assert_equal(9, REXML::Functions::number(telem)) + end + def test_functions_number_float + telem = REXML::Element.new("elem") + telem.text="10.4" + assert_equal(10.4, REXML::Functions::number(telem)) + end + def test_functions_number_negative_int + telem = REXML::Element.new("elem") + telem.text="-9" + assert_equal(-9, REXML::Functions::number(telem)) + end + def test_functions_number_negative_float + telem = REXML::Element.new("elem") + telem.text="-9.13" + assert_equal(-9.13, REXML::Functions::number(telem)) + end + #def test_functions_number_scientific_notation + # telem = REXML::Element.new("elem") + # telem.text="9.13E12" + # assert_equal(9.13E12, REXML::Functions::number(telem)) + #end + end +end -- cgit v1.2.3