summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStan Lo <stan001212@gmail.com>2023-07-03 14:48:19 +0100
committergit <svn-admin@ruby-lang.org>2023-07-03 13:48:23 +0000
commitaf9eeb19d8b73a951776ea91901618d6e038d030 (patch)
tree6636051b3dcff3c71a8ee84dd5df2ce2a6805b48 /test
parent4430b73cee4aaa4f203e14368d93b3297505c63e (diff)
[ruby/irb] Stop treating history-saving logic as extension
(https://github.com/ruby/irb/pull/613) Since `IRB.conf[:SAVE_HISTORY]` is assigned with 1000 by default, history-saving is a feature enabled by default. So it should not be treated as an extension, which adds unnecessary complexity to the code.
Diffstat (limited to 'test')
-rw-r--r--test/irb/test_history.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/irb/test_history.rb b/test/irb/test_history.rb
index fc81d53005..f0dfa03c6f 100644
--- a/test/irb/test_history.rb
+++ b/test/irb/test_history.rb
@@ -1,6 +1,5 @@
# frozen_string_literal: false
require 'irb'
-require 'irb/ext/save-history'
require 'readline'
require_relative "helper"