File: inflector_spec.rb

package info (click to toggle)
ruby-inflecto 0.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: ruby: 691; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
require 'spec_helper'

describe Inflecto, 'underscore' do
  specify 'allows to create snake_case from CamelCase' do
    Inflecto.underscore('CamelCase').should eql('camel_case')
  end
end