summaryrefslogtreecommitdiff
path: root/test/irb/command/test_force_exit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/irb/command/test_force_exit.rb')
-rw-r--r--test/irb/command/test_force_exit.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/irb/command/test_force_exit.rb b/test/irb/command/test_force_exit.rb
index 9e86c644d6..191a786872 100644
--- a/test/irb/command/test_force_exit.rb
+++ b/test/irb/command/test_force_exit.rb
@@ -47,17 +47,5 @@ module TestIRB
assert_match(/irb\(main\):001> 123/, output)
end
-
- def test_forced_exit_out_of_irb_session
- write_ruby <<~'ruby'
- at_exit { puts 'un' + 'reachable' }
- binding.irb
- exit! # this will call exit! method overrided by command
- ruby
- output = run_ruby_file do
- type "exit"
- end
- assert_not_include(output, 'unreachable')
- end
end
end