Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsonapi-resources / test / unit / formatters / dasherized_key_formatter_test.rb
Size: Mime:
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