mathjs/test/expression/node/UpdateNode.test.js
2014-01-01 20:46:30 +01:00

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
});
});