diff options
author | Benoit Daloze <eregontp@gmail.com> | 2021-06-02 14:34:07 +0200 |
---|---|---|
committer | Benoit Daloze <eregontp@gmail.com> | 2021-06-02 14:34:07 +0200 |
commit | 22e2a6a999b958efe5d84d9c7314e450fda82254 (patch) | |
tree | b2dc946cf2fe2c250d0583675e548c67dca3e71a /spec/ruby/command_line/dash_r_spec.rb | |
parent | a4fbc7e2884ba694278adea3b32ddb8c2ac10efe (diff) | |
download | ruby-22e2a6a999b958efe5d84d9c7314e450fda82254.tar.gz |
Update to ruby/spec@a0b7d0d
Diffstat (limited to 'spec/ruby/command_line/dash_r_spec.rb')
-rw-r--r-- | spec/ruby/command_line/dash_r_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/command_line/dash_r_spec.rb b/spec/ruby/command_line/dash_r_spec.rb index 46c000b9e7..ea5bde5adf 100644 --- a/spec/ruby/command_line/dash_r_spec.rb +++ b/spec/ruby/command_line/dash_r_spec.rb @@ -13,7 +13,7 @@ describe "The -r command line option" do end it "requires the file before parsing the main script" do - out = ruby_exe(fixture(__FILE__, "bad_syntax.rb"), options: "-r #{@test_file}", args: "2>&1") + out = ruby_exe(fixture(__FILE__, "bad_syntax.rb"), options: "-r #{@test_file}", args: "2>&1", exit_status: 1) $?.should_not.success? out.should include("REQUIRED") out.should include("syntax error") |