Sha256: 1a0d6882459d6abc76612f8b88f94337bf9d746d93231c313da5b4b8a7dfd0bd
Contents?: true
Size: 302 Bytes
Versions: 42
Compression:
Stored size: 302 Bytes
Contents
require File.dirname(__FILE__) + '/../spec_helper' describe String, 'camelize' do it "should camelize a string" do 'my_string'.camelize.should == 'MyString' end end describe String, 'underscore' do it "should underscore a string" do 'MyString'.underscore.should == 'my_string' end end
Version data entries
42 entries across 42 versions & 6 rubygems