# File tests/core_ext/string.rb, line 26
    def test_camelize
      "hello_camel".camelize.should == "helloCamel"
      "hello_camel_lots_of_humps".camelize.should == "helloCamelLotsOfHumps"
    end