Skip to content

Commit

Permalink
Adjusted some test wording
Browse files Browse the repository at this point in the history
  • Loading branch information
rwz committed Aug 17, 2012
1 parent e4e551b commit 9fa84bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,10 @@ $(document).ready(function() {
deepEqual(_('I-love-you!').words(/-/), ['I', 'love', 'you!']);
deepEqual(_(123).words(), ['123'], '123 number has one word "123".');
deepEqual(_(0).words(), ['0'], 'Zero number has one word "0".');
deepEqual(_('').words(), [], 'Empty strings hasn\'t words.');
deepEqual(_(' ').words(), [], 'Clean strings hasn\'t words.');
deepEqual(_(null).words(), [], '"null" hasn\'t words.');
deepEqual(_(undefined).words(), [], '"undefined" hasn\'t words.');
deepEqual(_('').words(), [], 'Empty strings has no words.');
deepEqual(_(' ').words(), [], 'Blank strings has no words.');
deepEqual(_(null).words(), [], 'null has no words.');
deepEqual(_(undefined).words(), [], 'undefined has no words.');
});

test('String: chars', function() {
Expand Down

0 comments on commit 9fa84bd

Please sign in to comment.