mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1808029061
Upgrade IRB to 41ea43a4a7
Mostly backport changes.
13 lines
418 B
Ruby
13 lines
418 B
Ruby
# frozen_string_literal: false
|
|
require 'test/unit'
|
|
|
|
module TestIRB
|
|
class TestOption < Test::Unit::TestCase
|
|
def test_end_of_option
|
|
bug4117 = '[ruby-core:33574]'
|
|
bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : []
|
|
status = assert_in_out_err(bundle_exec + %w[-W0 -rirb -e IRB.start(__FILE__) -- -f --], "", //, [], bug4117)
|
|
assert(status.success?, bug4117)
|
|
end
|
|
end
|
|
end
|