1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/scanf/test_scanfio.rb

29 lines
565 B
Ruby
Raw Normal View History

# frozen_string_literal: false
# $Id$
#
# scanf for Ruby
#
# Ad hoc tests of IO#scanf (needs to be expanded)
2019-06-27 23:37:07 -04:00
require 'test/unit'
require 'scanf'
class TestScanfIO < Test::Unit::TestCase
def test_io
2019-06-27 23:37:36 -04:00
File.open(File.join(File.dirname(__FILE__), "data.txt"), "r") do |fh|
assert_equal(0, fh.pos)
assert_equal(["this", "is"], fh.scanf("%s%s"))
assert_equal([33, "little"], fh.scanf("%da fun%s"))
end
end
def test_pipe_scanf
2019-06-27 23:37:36 -04:00
IO.pipe do |r, w|
w.write('a')
w.close
assert_equal([], r.scanf('a'))
end
end
end