From 2acc30eead0f8653c7266e0d9365ece41f2f458f Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 11 Jun 2010 16:14:15 +0000 Subject: [PATCH] add sleep. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/io/console/test_io_console.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb index 7d919c758c..ba363c637c 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -20,7 +20,9 @@ class TestIO_Console < Test::Unit::TestCase PTY.open {|m, s| assert(s.echo?) m.print "a\n" + sleep 0.1 s.print "b\n" + sleep 0.1 assert_equal("a\r\nb\r\n", m.readpartial(10)) assert_equal("a\n", s.readpartial(10)) s.noecho { @@ -32,7 +34,9 @@ class TestIO_Console < Test::Unit::TestCase } assert(s.echo?) m.print "a\n" + sleep 0.1 s.print "b\n" + sleep 0.1 assert_equal("a\r\nb\r\n", m.readpartial(10)) assert_equal("a\n", s.readpartial(10)) } @@ -42,7 +46,9 @@ class TestIO_Console < Test::Unit::TestCase PTY.open {|m, s| assert(s.echo?) m.print "a\n" + sleep 0.1 s.print "b\n" + sleep 0.1 assert_equal("a\r\nb\r\n", m.readpartial(10)) assert_equal("a\n", s.readpartial(10)) s.echo = false @@ -54,7 +60,9 @@ class TestIO_Console < Test::Unit::TestCase s.echo = true assert(s.echo?) m.print "a\n" + sleep 0.1 s.print "b\n" + sleep 0.1 assert_equal("a\r\nb\r\n", m.readpartial(10)) assert_equal("a\n", s.readpartial(10)) } @@ -63,8 +71,11 @@ class TestIO_Console < Test::Unit::TestCase def test_iflush PTY.open {|m, s| m.print "a\n" + sleep 0.1 s.iflush + sleep 0.1 m.print "b\n" + sleep 0.1 assert_equal("a\r\nb\r\n", m.readpartial(10)) assert_equal("b\n", s.readpartial(10)) }