summaryrefslogtreecommitdiff
path: root/spec/ruby/command_line/dash_r_spec.rb
blob: b29895bd2629cf12d527772188c6dda50a9ae29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../spec_helper'

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