tests: add type tests

This commit is contained in:
Daniel Cousens 2015-08-25 13:52:24 +10:00
parent e94ec00919
commit 97ecb313c2

14
test/types.js Normal file
View file

@ -0,0 +1,14 @@
/* global describe, it */
var assert = require('assert')
var types = require('../src/types')
describe('types', function () {
describe('ECCurve/ECPoint/BigInt', function () {
it('return true for duck types', function () {
assert(types.quacksLike('BigInteger', function BigInteger () {}))
assert(types.quacksLike('Curve', function Curve () {}))
assert(types.quacksLike('Point', function Point () {}))
})
})
})