summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-15 23:34:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-15 23:34:27 +0000
commit64efbf246e98bd473aebe99ef0e5eb23e82587d3 (patch)
treeead4e3a95935f852ba06318e39fe423119fd38ae /test/ruby/test_io.rb
parent9ec940a4c9ca01d9010f657b60d7336cd3c4161c (diff)
test_io.rb: use assert_not_predicate
* test/ruby/test_io.rb (test_DATA_binmode): assert_not_predicate for more descriptive message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb11
1 files changed, 3 insertions, 8 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index e784c30c07..5c713451df 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -2470,15 +2470,10 @@ End
end
def test_DATA_binmode
- make_tempfile {|t|
- open(t.path, "w") {|f|
- f.puts <<-SRC
-puts DATA.binmode?
+ assert_separately([], <<-SRC)
+assert_not_predicate(DATA, :binmode?)
__END__
- SRC
- }
- assert_in_out_err(t.path, [], %w(false))
- }
+ SRC
end
def test_threaded_flush