summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortomoya ishida <tomoyapenguin@gmail.com>2023-12-03 23:05:13 +0900
committergit <svn-admin@ruby-lang.org>2023-12-03 14:05:16 +0000
commita2197466a273928f76e00e89b3a6f5fb23569fa6 (patch)
tree1cd5ba197f7458e87990b545e696d5833af1c525 /test
parentd4b1f56f50903403cb75451215298ceb56f2302c (diff)
[ruby/irb] Disable pager in eval_history test
(https://github.com/ruby/irb/pull/799) https://github.com/ruby/irb/commit/ee85e84935
Diffstat (limited to 'test')
-rw-r--r--test/irb/test_eval_history.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/irb/test_eval_history.rb b/test/irb/test_eval_history.rb
index e81e65f7f4..0f9ec4811c 100644
--- a/test/irb/test_eval_history.rb
+++ b/test/irb/test_eval_history.rb
@@ -18,6 +18,7 @@ module TestIRB
IRB.init_config(nil)
IRB.conf[:VERBOSE] = false
IRB.conf[:PROMPT_MODE] = :SIMPLE
+ IRB.conf[:USE_PAGER] = false
IRB.conf.merge!(conf)
input = TestInputMethod.new(lines)
irb = IRB::Irb.new(IRB::WorkSpace.new(main), input)