UNPKG
stringutils
Version:
latest (0.0.1)
0.0.1
A collection of string manipulation utils
romansky/StringUtils
stringutils
/
specs
/
FunctionalSpec.coffee
7 lines
(4 loc)
•
179 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
su = require
'../.'
describe
"Functional tests for StringUtils"
,
->
it
"needs to capitalize a string"
,
->
expect
( su.
capitalize
(
"capitalize me!"
) ).
toEqual
(
"Capitalize me!"
)