Repository URL to install this package:
|
Version:
0.8.0 ▾
|
require File.expand_path('../../../test_helper', __FILE__)
class DasherizedKeyFormatterTest < ActiveSupport::TestCase
def test_dasherize_camelize
formatted = DasherizedKeyFormatter.format("CarWash")
assert_equal formatted, "car-wash"
end
end