Daniel Cousens
9 years ago
2 changed files with 17 additions and 5 deletions
@ -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 () {})) |
|||
}) |
|||
}) |
|||
}) |
Loading…
Reference in new issue