UNPKG

228 BJavaScriptView Raw
1describe('hyphenate', function(){
2
3 var hyphenate = require('../index').hyphenate
4
5 it('should work well', function(){
6
7 hyphenate('ThisIsMyWord')
8 .should
9 .equal('this-is-my-word')
10
11 })
12})
\No newline at end of file