spec/install/gems/c_ext_spec.rb in bundler-1.2.5 vs spec/install/gems/c_ext_spec.rb in bundler-1.3.0.pre
- old
+ new
@@ -38,11 +38,11 @@
G
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