spec/rpm_manifestizer_spec.rb in inqlude-0.0.8 vs spec/rpm_manifestizer_spec.rb in inqlude-0.7.0
- old
+ new
@@ -2,10 +2,10 @@
describe RpmManifestizer do
it "detects libraries" do
m = RpmManifestizer.new Settings.new
- m.is_library?( "libjson" ).should be_true
- m.is_library?( "kontact" ).should be_false
+ expect(m.is_library?( "libjson" )).to be true
+ expect(m.is_library?( "kontact" )).to be false
end
end