aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/irb/yamatanooroti/test_rendering.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/irb/yamatanooroti/test_rendering.rb b/test/irb/yamatanooroti/test_rendering.rb
index f9b4befbf5..ca8176dfe6 100644
--- a/test/irb/yamatanooroti/test_rendering.rb
+++ b/test/irb/yamatanooroti/test_rendering.rb
@@ -389,11 +389,15 @@ class IRB::RenderingTest < Yamatanooroti::TestCase
script.close
start_terminal(40, 80, %W{ruby -I#{@pwd}/lib #{script.to_path}}, startup_message: 'start IRB')
write("debug\n")
- write("n")
+ write("pp 1\n")
+ write("pp 1")
close
screen = result.join("\n").sub(/\n*\z/, "\n")
- assert_include(screen, "irb:rdbg(main):002> n # debug command")
+ # submitted input shouldn't contain hint
+ assert_include(screen, "irb:rdbg(main):002> pp 1\n")
+ # unsubmitted input should contain hint
+ assert_include(screen, "irb:rdbg(main):003> pp 1 # debug command\n")
ensure
File.unlink(script) if script
end