From 95433b2b424ffdcbded470108af3cbea31516d66 Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 17 Feb 2012 03:27:02 +0000 Subject: merge revision(s) 34268: * test/readline/test_readline.rb (test_completion_proc_empty_result): ensure clearance of Readline's line_buffer after the test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/readline/test_readline.rb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/readline/test_readline.rb b/test/readline/test_readline.rb index c5188ad5c6..fe8aa0e843 100644 --- a/test/readline/test_readline.rb +++ b/test/readline/test_readline.rb @@ -208,11 +208,19 @@ class TestReadline < Test::Unit::TestCase stdin.write("first\t") stdin.flush Readline.completion_proc = ->(text) {[]} - line = nil + line1 = line2 = nil replace_stdio(stdin.path, stdout.path) { - assert_nothing_raised(NoMemoryError) {line = Readline.readline("> ")} + assert_nothing_raised(NoMemoryError) {line1 = Readline.readline("> ")} + stdin.write("\n") + stdin.flush + assert_nothing_raised(NoMemoryError) {line2 = Readline.readline("> ")} } - assert_equal("first", line) + assert_equal("first", line1) + assert_equal("", line2) + begin + assert_equal("", Readline.line_buffer) + rescue NotimplementedError + end end end -- cgit v1.2.3