feat: Add all remaining features of original Picomath PoC (#5)
Namely, a README describing the proof-of-concept, a custom selective loader, and some additional tests. Co-authored-by: Glen Whitney <glen@studioinfinity.org> Reviewed-on: #5
This commit is contained in:
parent
84a8b9d5c4
commit
a16d6a5ce3
4 changed files with 67 additions and 1 deletions
13
test/_PocomathInstance.mjs
Normal file
13
test/_PocomathInstance.mjs
Normal file
|
@ -0,0 +1,13 @@
|
|||
import assert from 'assert'
|
||||
import PocomathInstance from '../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