From 2afa0b4ccaeef334b897ad33ddd4f36c7e51dbf9 Mon Sep 17 00:00:00 2001 From: nagachika Date: Wed, 11 Jan 2012 13:46:32 +0000 Subject: * 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/trunk@34268 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/readline/test_readline.rb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'test/readline') diff --git a/test/readline/test_readline.rb b/test/readline/test_readline.rb index 2b97dc8d3e..dcb83e9991 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