mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
33 lines
597 B
JavaScript
33 lines
597 B
JavaScript
// test UpdateNode
|
|
var assert = require('assert'),
|
|
approx = require('../../../tools/approx'),
|
|
math = require('../../../index')();
|
|
|
|
describe('UpdateNode', function() {
|
|
|
|
it ('should create a UpdateNode', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should evaluate a UpdateNode', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should compile a UpdateNode', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should find a UpdateNode', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should match a UpdateNode', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should stringify a UpdateNode', function () {
|
|
// TODO
|
|
});
|
|
|
|
});
|