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

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

  it "requires the specified file" do
    result = ruby_exe(@script, options: "-r #{@test_file}")
    result.should include(@test_file + ".rb")
  end
end