spec/unit/string_spec.rb in couch_potato-0.2.30 vs spec/unit/string_spec.rb in couch_potato-0.2.31
- old
+ new
@@ -3,15 +3,5 @@
describe String, 'camelize' do
it "should camelize a string" do
'my_string'.camelize.should == 'MyString'
end
end
-
-describe String, 'snake_case' do
- it "should snake_case a string" do
- 'MyString'.snake_case.should == 'my_string'
- end
-
- it "should snake_case a string using a custom separator" do
- 'My::String'.snake_case('::').should == 'my::string'
- end
-end
\ No newline at end of file