summaryrefslogtreecommitdiff
path: root/test/io
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-11 15:58:40 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-11 15:58:40 +0000
commit57b87a00f8027d230d845e0dbd08432d9aa1aae6 (patch)
treee0149d4cfbe9248c8c9cfaa7ef1c8c3ec5a760b3 /test/io
parent13e15287cb565afc55082d5973fec43c22ab8730 (diff)
[DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49213 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/io')
-rw-r--r--test/io/console/test_io_console.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index a44e5ffff9..c69eec757e 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -68,6 +68,14 @@ class TestIO_Console < Test::Unit::TestCase
}
end
+ def test_raw!
+ helper {|m, s|
+ s.raw!
+ s.print "foo\n"
+ assert_equal("foo\n", m.gets)
+ }
+ end
+
def test_cooked
helper {|m, s|
assert_send([s, :echo?])