зеркало из https://github.com/github/ruby.git
Copy config to make IRB::Context#use_colorize? functional
on initialize This fixes https://github.com/ruby/ruby/pull/2188
This commit is contained in:
Родитель
4613c4bd5c
Коммит
32ed85f601
|
@ -40,6 +40,7 @@ module IRB
|
|||
@load_modules = IRB.conf[:LOAD_MODULES]
|
||||
|
||||
@use_readline = IRB.conf[:USE_READLINE]
|
||||
@use_colorize = IRB.conf[:USE_COLORIZE]
|
||||
@verbose = IRB.conf[:VERBOSE]
|
||||
@io = nil
|
||||
|
||||
|
|
|
@ -75,5 +75,9 @@ module TestIRB
|
|||
ensure
|
||||
$VERBOSE = verbose
|
||||
end
|
||||
|
||||
def test_default_config
|
||||
assert_equal(true, @context.use_colorize?)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче