summaryrefslogtreecommitdiff
path: root/jni/ruby/test/scanf/test_scanfio.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/scanf/test_scanfio.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/scanf/test_scanfio.rb')
-rw-r--r--jni/ruby/test/scanf/test_scanfio.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/jni/ruby/test/scanf/test_scanfio.rb b/jni/ruby/test/scanf/test_scanfio.rb
new file mode 100644
index 0000000..6b54210
--- /dev/null
+++ b/jni/ruby/test/scanf/test_scanfio.rb
@@ -0,0 +1,20 @@
+# $Id: test_scanfio.rb 25426 2009-10-21 03:44:56Z nobu $
+#
+# scanf for Ruby
+#
+# Ad hoc tests of IO#scanf (needs to be expanded)
+
+
+require "scanf"
+
+class TestScanfIO < Test::Unit::TestCase
+ def test_io
+ fh = File.new(File.join(File.dirname(__FILE__), "data.txt"), "r")
+ assert_equal(0, fh.pos)
+ assert_equal(["this", "is"], fh.scanf("%s%s"))
+ assert_equal([33, "little"], fh.scanf("%da fun%s"))
+ ensure
+ fh.close
+ end
+end
+