summaryrefslogtreecommitdiff
path: root/spec/ruby/command_line/dash_upper_i_spec.rb
blob: 0a00059949aad0209ab79d11a187710e1eb64676 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../spec_helper', __FILE__)

describe "The -I command line option" do
  before :each do
    @script = fixture __FILE__, "loadpath.rb"
  end

  it "adds the path to the load path ($:)" do
    ruby_exe(@script, options: "-I fixtures").should include("fixtures")
  end
end