Written tests for contains, in_array and getDomainFromUrl.

This commit is contained in:
Mario Basic
2015-06-30 17:46:37 +02:00
parent 12b153b323
commit 9598a53788
4 changed files with 32 additions and 1 deletions

View File

@@ -7,4 +7,12 @@ describe('in_array', function() {
it('should be a function', function() {
expect(in_array).to.be.a('function');
});
it('should find the needle and return true', function() {
expect(in_array('4', ['4', '3', '2', '1'])).to.equal(true);
});
it('should not find the needle and it should return false', function() {
expect(in_array('5', ['4', '3', '2', '1'])).to.equal(false);
});
});