spec/unit/string_spec.rb in couch_potato-1.4.0 vs spec/unit/string_spec.rb in couch_potato-1.6.3
- old
+ new
@@ -1,7 +1,7 @@
require 'spec_helper'
describe String, 'camelize' do
it "should camelize a string" do
- 'my_string'.camelize.should == 'MyString'
+ expect('my_string'.camelize).to eq('MyString')
end
end