mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
298 B
Ruby
12 lines
298 B
Ruby
|
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
|