summaryrefslogtreecommitdiff
path: root/spec/rubyspec/command_line/dash_r_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/command_line/dash_r_spec.rb')
-rw-r--r--spec/rubyspec/command_line/dash_r_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/rubyspec/command_line/dash_r_spec.rb b/spec/rubyspec/command_line/dash_r_spec.rb
new file mode 100644
index 0000000000..3d3abcf0b7
--- /dev/null
+++ b/spec/rubyspec/command_line/dash_r_spec.rb
@@ -0,0 +1,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