diff options
| author | Stan Lo <stan001212@gmail.com> | 2023-07-03 14:48:19 +0100 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2023-07-03 13:48:23 +0000 |
| commit | af9eeb19d8b73a951776ea91901618d6e038d030 (patch) | |
| tree | 6636051b3dcff3c71a8ee84dd5df2ce2a6805b48 /test | |
| parent | 4430b73cee4aaa4f203e14368d93b3297505c63e (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.rb | 1 |
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" |
