mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
Conflicts: HISTORY.md bower.json component.json dist/math.js dist/math.map dist/math.min.js lib/function/arithmetic/abs.js lib/function/probability/gamma.js lib/version.js package.json
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
// test compile
|
|
var assert = require('assert');
|
|
var math = require('../../../index');
|
|
|
|
describe('compile', function() {
|
|
|
|
it('should compile an expression', function() {
|
|
var code = math.compile('(5+3)/4');
|
|
assert.ok(code instanceof Object);
|
|
assert.ok(code.eval instanceof Function);
|
|
assert.equal(code.eval(), 2);
|
|
});
|
|
|
|
it('should parse multiple expressions', function() {
|
|
var codes = math.compile(['2+3', '4+5']);
|
|
assert.ok(Array.isArray(codes));
|
|
assert.equal(codes.length, 2);
|
|
|
|
assert.equal(codes[0].eval(), 5);
|
|
assert.equal(codes[1].eval(), 9);
|
|
});
|
|
|
|
it('should throw an error on wrong number of arguments', function() {
|
|
assert.throws(function () {math.compile()}, /TypeError: Too few arguments/);
|
|
assert.throws(function () {math.compile('2+3', '3+4')}, /TypeError: Too many arguments/);
|
|
});
|
|
|
|
it('should throw an error on wrong type of argument', function() {
|
|
assert.throws(function () {math.compile(math.complex(2, 3))}, TypeError);
|
|
});
|
|
|
|
it('should LaTeX compile', function () {
|
|
var expression = math.parse('compile(1)');
|
|
assert.equal(expression.toTex(), '\\mathrm{compile}\\left(1\\right)');
|
|
});
|
|
|
|
});
|