summaryrefslogtreecommitdiff
path: root/test/irb/test_option.rb
blob: aa634c02a22bd13d1ae54b2a3682fba0319417ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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