spec/bullet/ext/string_spec.rb in bullet-4.7.1 vs spec/bullet/ext/string_spec.rb in bullet-4.8.0
- old
+ new
@@ -1,13 +1,13 @@
require 'spec_helper'
describe String do
context "bullet_class_name" do
it "should only return class name" do
- "Post:1".bullet_class_name.should == "Post"
+ expect("Post:1".bullet_class_name).to eq("Post")
end
it "should return class name with namespace" do
- "Mongoid::Post:1234567890".bullet_class_name.should == "Mongoid::Post"
+ expect("Mongoid::Post:1234567890".bullet_class_name).to eq("Mongoid::Post")
end
end
end