Tests for functions

This commit is contained in:
Angelos Chalaris
2018-02-03 13:01:48 +02:00
parent bdac20fb7f
commit fe6565184d
2 changed files with 13 additions and 4 deletions

View File

@ -5,9 +5,16 @@ test('Testing functions', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof functions === 'function', 'functions is a Function');
function Foo() {
this.a = () => 1;
this.b = () => 2;
}
Foo.prototype.c = () => 3;
t.deepEqual(functions(new Foo()), ['a', 'b'], 'Returns own methods');
t.deepEqual(functions(new Foo(), true), ['a', 'b', 'c'], 'Returns own and inherited methods');
//t.deepEqual(functions(args..), 'Expected');
//t.equal(functions(args..), 'Expected');
//t.false(functions(args..), 'Expected');
//t.throws(functions(args..), 'Expected');
t.end();
});
});