Sha256: 0b9fe46eac9aedfc52dc59bb230d4c9c4986f9a74c404b8cadcf8f7005fc8abc
Contents?: true
Size: 424 Bytes
Versions: 5
Compression:
Stored size: 424 Bytes
Contents
require File.dirname(__FILE__) + '/../spec_helper' #described_in_docs String, '#camelcase' #described_in_docs String, '#underscore' describe String, '#camelcase' do it 'should turn HelloWorld into hello_world' do "HelloWorld".underscore.should == "hello_world" end end describe String, '#underscore' do it 'should turn hello_world into HelloWorld' do "hello_world".camelcase.should == "HelloWorld" end end
Version data entries
5 entries across 5 versions & 1 rubygems