test/string_test.rb in AbsoluteRenamer-1.0.4 vs test/string_test.rb in AbsoluteRenamer-1.1.0

- old
+ new

@@ -17,17 +17,9 @@ should "return Hello..World when camelizing hello..world" do assert_equal("Hello..World", "hello..world".camelize) end - should "return Hello.World when camelizing hello.world with the /\./ separation pattern" do - assert_equal("Hello.World", "hello.world".camelize(/\./)) - end - - should "return Hello The.world when camelizing hello THE.world with the / / separation pattern" do - assert_equal("Hello The.world", "hello THE.world".camelize(/ /)) - end - context "set to hello world" do setup do @string = 'hello world' end