Sha256: 58f6d70b15d138d9f0fcddf94dd4a5ff42b0f11556ec6ef3e7c54ca203f774a7

Contents?: true

Size: 405 Bytes

Versions: 24

Compression:

Stored size: 405 Bytes

Contents

describe 'MotionKit utility methods' do

  it 'should objc-ify a string' do
    MotionKit.objective_c_method_name('this_is_my_string').should == 'thisIsMyString'
  end

  it 'should camel case a string' do
    MotionKit.camel_case('this_is_my_string').should == 'ThisIsMyString'
  end

  it 'should return the UIView appearance class' do
    MotionKit.appearance_class.should.be.kind_of(Class)
  end

end

Version data entries

24 entries across 18 versions & 1 rubygems

Version Path
motion-kit-0.12.0 spec/ios/motionkit_util_spec.rb
motion-kit-0.11.2 spec/ios/motionkit_util_spec.rb
motion-kit-0.11.1 spec/ios/motionkit_util_spec.rb
motion-kit-0.11.0 spec/ios/motionkit_util_spec.rb