summaryrefslogtreecommitdiff
path: root/spec/install/gems/c_ext_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/install/gems/c_ext_spec.rb')
-rw-r--r--spec/install/gems/c_ext_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/install/gems/c_ext_spec.rb b/spec/install/gems/c_ext_spec.rb
index bc3e24520a..6f9fe22b70 100644
--- a/spec/install/gems/c_ext_spec.rb
+++ b/spec/install/gems/c_ext_spec.rb
@@ -40,9 +40,9 @@ describe "installing a gem with C extensions" do
bundle "config build.c_extension --with-c_extension=hello"
bundle "install"
- out.should_not include("extconf.rb failed")
+ expect(out).not_to include("extconf.rb failed")
run "Bundler.require; puts CExtension.new.its_true"
- out.should == "true"
+ expect(out).to eq("true")
end
end