parent
ed71b15969
commit
6e7f244c33
23 changed files with 100 additions and 52 deletions
13
test/core/_PocomathInstance.mjs
Normal file
13
test/core/_PocomathInstance.mjs
Normal file
|
@ -0,0 +1,13 @@
|
|||
import assert from 'assert'
|
||||
import PocomathInstance from '../../src/core/PocomathInstance.mjs'
|
||||
|
||||
describe('PocomathInstance', () => {
|
||||
it('creates an instance that can define typed-functions', () => {
|
||||
const pi = new PocomathInstance('dummy')
|
||||
pi.install({'add': {'any,any': [[], (a,b) => a+b]}})
|
||||
assert.strictEqual(pi.add(2,2), 4)
|
||||
assert.strictEqual(pi.add('Kilroy', 17), 'Kilroy17')
|
||||
assert.strictEqual(pi.add(1, undefined), NaN)
|
||||
assert.throws(() => pi.add(1), TypeError)
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue