test/util_test.rb in rubber-2.3.1 vs test/util_test.rb in rubber-2.4.0

- old
+ new

@@ -73,7 +73,15 @@ end end end + context 'camelcase' do + should 'handle single words' do + assert_equal 'Aws', camelcase('aws') + end + should 'handle multiple words' do + assert_equal 'DigitalOcean', camelcase('digital_ocean') + end + end end