en.javascript.info/1-js/4-data-structures/3-string/2-check-spam/_js.view/test.js
2015-01-11 01:54:57 +03:00

13 lines
No EOL
406 B
JavaScript

describe("checkSpam", function() {
it('считает спамом "buy ViAgRA now"', function() {
assert.isTrue( checkSpam('buy ViAgRA now') );
});
it('считает спамом "free xxxxx"', function() {
assert.isTrue( checkSpam('free xxxxx') );
});
it('не считает спамом "innocent rabbit"', function() {
assert.isFalse( checkSpam('innocent rabbit') );
});
});