mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
// test keywords
|
|
var assert = require('assert'),
|
|
keywords = require('../../lib/expression/keywords');
|
|
|
|
describe('keywords', function() {
|
|
|
|
it('should return a map with reserved keywords', function() {
|
|
assert.deepEqual(Object.keys(keywords).sort(), ['end'].sort());
|
|
});
|
|
|
|
});
|