mirror of
https://github.com/DeNNiiInc/Connect-5.git
synced 2026-04-18 16:05:59 +00:00
Add complete multiplayer system with real-time gameplay, challenge system, and 50x50 board option
This commit is contained in:
44
node_modules/bad-words/test/isProfane.js
generated
vendored
Normal file
44
node_modules/bad-words/test/isProfane.js
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
require('assert');
|
||||
var Filter = require('../lib/badwords.js'),
|
||||
filter = new Filter(),
|
||||
assert = require('better-assert');
|
||||
|
||||
describe('filter', function(){
|
||||
describe('isProfane',function(){
|
||||
it("Should detect a bad word and return a boolean value",function(){
|
||||
assert(filter.isProfane("ash0le"));
|
||||
});
|
||||
|
||||
it("Should return false when no bad word is detected",function(){
|
||||
assert(filter.isProfane("wife") === false);
|
||||
});
|
||||
|
||||
it("Should be able to detect a bad word in a sentence",function(){
|
||||
assert(filter.isProfane("that person is an ash0le"));
|
||||
});
|
||||
|
||||
it('Filters out special characters appropriately', function() {
|
||||
assert(filter.isProfane("You're an asshole^ you are"));
|
||||
});
|
||||
|
||||
it('Should detect filtered words from badwords-list', function(){
|
||||
assert(filter.isProfane('willies'));
|
||||
});
|
||||
|
||||
it('Should detect filtered words regardless of type case', function() {
|
||||
var filter = new Filter({
|
||||
list: ['Test']
|
||||
});
|
||||
assert(filter.isProfane('test'));
|
||||
});
|
||||
|
||||
it('Should tokenize words according to regex word boundaries', function() {
|
||||
assert(filter.isProfane("that person is an\nasshole"));
|
||||
});
|
||||
|
||||
it('Should detect bad word phrases', function () {
|
||||
filter.addWords('oh no');
|
||||
assert(filter.isProfane("oh no! this is profane!"));
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user