en.javascript.info/1-js/4-data-structures/3-string/2-check-spam/_js.view/test.js
2015-03-09 18:48:58 +03:00

13 lines
No EOL
400 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'));
});
});