blob: b9abf685dad7b0cef3a01458904e3ada30fb7902 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'abstract_unit'
require 'active_support/core_ext/io'
class IOTest < Test::Unit::TestCase
def test_binread_one_arg
assert_equal File.read(__FILE__), IO.binread(__FILE__)
end
def test_binread_two_args
assert_equal File.read(__FILE__).bytes.first(10).pack('C*'),
IO.binread(__FILE__, 10)
end
def test_binread_three_args
actual = IO.binread(__FILE__, 5, 10)
expected = File.open(__FILE__, 'rb') { |f|
f.seek 10
f.read 5
}
assert_equal expected, actual
end
end
|