UNPKG

240 BJavaScriptView Raw
1describe('camelize', function(){
2
3 var camelize = require('../index').camelize
4
5 it('should work well', function(){
6
7 camelize('This-is-a-very-long-word')
8 .should
9 .equal('ThisIsAVeryLongWord')
10
11 })
12})
\No newline at end of file