Skip to content

Commit 0eebc39

Browse files
committed
Add a bunch of tests
1 parent 8256804 commit 0eebc39

File tree

3 files changed

+72
-1
lines changed

3 files changed

+72
-1
lines changed

test/assert.js

+34
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,20 @@ describe('assert', function () {
139139
assert.typeOf('test', 'string');
140140
assert.typeOf(true, 'boolean');
141141
assert.typeOf(5, 'number');
142+
143+
assert.typeOf(() => {}, 'function');
144+
assert.typeOf(function() {}, 'function');
145+
assert.typeOf(async function() {}, 'asyncfunction');
146+
assert.typeOf(function*() {}, 'generatorfunction');
147+
assert.typeOf(async function*() {}, 'asyncgeneratorfunction');
148+
149+
err(function () {
150+
assert.typeOf(5, 'function', 'blah');
151+
}, "blah: expected 5 to be a function");
152+
153+
err(function () {
154+
assert.typeOf(function() {}, 'asyncfunction', 'blah');
155+
}, "blah: expected [Function] to be an asyncfunction");
142156

143157
if (typeof Symbol === 'function') {
144158
assert.typeOf(Symbol(), 'symbol');
@@ -151,10 +165,20 @@ describe('assert', function () {
151165

152166
it('notTypeOf', function () {
153167
assert.notTypeOf('test', 'number');
168+
169+
assert.notTypeOf(() => {}, 'string');
170+
assert.notTypeOf(function() {}, 'string');
171+
assert.notTypeOf(async function() {}, 'string');
172+
assert.notTypeOf(function*() {}, 'string');
173+
assert.notTypeOf(async function*() {}, 'string');
154174

155175
err(function () {
156176
assert.notTypeOf(5, 'number', 'blah');
157177
}, "blah: expected 5 not to be a number");
178+
179+
err(function () {
180+
assert.notTypeOf(() => {}, 'function', 'blah');
181+
}, "blah: expected [Function] not to be a function");
158182
});
159183

160184
it('instanceOf', function() {
@@ -547,6 +571,16 @@ describe('assert', function () {
547571
assert.isCallable({}, 'blah');
548572
}, "blah: expected {} to be a callable function");
549573
});
574+
575+
it('isNotCallable', function() {
576+
assert.isNotCallable(false);
577+
assert.isNotCallable(10);
578+
assert.isNotCallable('string');
579+
580+
err(function () {
581+
assert.isNotCallable(function() {}, 'blah');
582+
}, "blah: expected [Function] not to be a callable function");
583+
});
550584

551585
it('isNotFunction', function () {
552586
assert.isNotFunction(5);

test/expect.js

+36-1
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,29 @@ describe('expect', function () {
391391
expect(function*() {}).to.be.callable;
392392
expect(async function*() {}).to.be.callable;
393393

394+
expect('foobar').to.not.be.callable;
395+
396+
err(function(){
397+
expect('foobar', 'blah').to.be.callable;
398+
}, "blah: expected 'foobar' to be a callable function");
399+
400+
err(function(){
401+
expect(function() {}, 'blah').to.not.be.callable;
402+
}, "blah: expected [Function] not to be a callable function");
403+
});
404+
405+
it('function', function() {
406+
expect(function() {}).to.be.a('function');
407+
expect(async function() {}).to.be.a('function');
408+
expect(function*() {}).to.be.a('function');
409+
expect(async function*() {}).to.be.a('function');
410+
411+
expect('foobar').to.not.be.a('function');
412+
413+
err(function(){
414+
expect('foobar').to.be.a('function', 'blah');
415+
}, "blah: expected 'foobar' to be a function");
416+
394417
err(function(){
395418
expect(function() {}).to.not.be.a('function', 'blah');
396419
}, "blah: expected [Function] not to be a function");
@@ -404,6 +427,10 @@ describe('expect', function () {
404427
expect(async function() {}).to.be.a('AsyncFunction');
405428
expect(async function*() {}).to.be.a('AsyncFunction');
406429

430+
err(function(){
431+
expect('foobar').to.be.a('asyncfunction', 'blah');
432+
}, "blah: expected 'foobar' to be an asyncfunction");
433+
407434
err(function(){
408435
expect(async function() {}).to.not.be.a('asyncfunction', 'blah');
409436
}, "blah: expected [AsyncFunction] not to be an asyncfunction");
@@ -417,6 +444,10 @@ describe('expect', function () {
417444
expect(function*() {}).to.be.a('generatorFunction');
418445
expect(async function*() {}).to.be.a('generatorFunction');
419446

447+
err(function(){
448+
expect('foobar').to.be.a('generatorfunction', 'blah');
449+
}, "blah: expected 'foobar' to be a generatorfunction");
450+
420451
err(function(){
421452
expect(function*() {}).to.not.be.a('generatorfunction', 'blah');
422453
}, "blah: expected [GeneratorFunction] not to be a generatorfunction");
@@ -429,6 +460,10 @@ describe('expect', function () {
429460
it('asyncGeneratorFunction', function() {
430461
expect(async function*() {}).to.be.a('asyncGeneratorFunction');
431462

463+
err(function(){
464+
expect(async function() {}, 'blah').to.be.a('asyncgeneratorfunction');
465+
}, "blah: expected [AsyncFunction] to be an asyncgeneratorfunction");
466+
432467
err(function(){
433468
expect(async function*() {}, 'blah').to.not.be.a('asyncgeneratorfunction');
434469
}, "blah: expected [AsyncGeneratorFunction] not to be an asyncgeneratorfunction");
@@ -456,8 +491,8 @@ describe('expect', function () {
456491
err(function(){
457492
expect(new Foo(), 'blah').to.an.instanceof(1);
458493
}, "blah: The instanceof assertion needs a constructor but Number was given.");
459-
err(function(){
460494

495+
err(function(){
461496
expect(new Foo()).to.an.instanceof('batman');
462497
}, "The instanceof assertion needs a constructor but String was given.");
463498

test/should.js

+2
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,8 @@ describe('should', function() {
442442
({}).should.be.a('object');
443443
([]).should.be.a('array');
444444
(function() {}).should.be.a('function');
445+
(async function*() {}).should.be.a('function');
446+
(async function() {}).should.be.a('asyncfunction');
445447

446448
if (typeof Symbol === 'function') {
447449
Symbol().should.be.a('symbol');

0 commit comments

Comments
 (0)