Separate lexer
This commit is contained in:
14
test/spec/ol/expression/lexer.test.js
Normal file
14
test/spec/ol/expression/lexer.test.js
Normal file
@@ -0,0 +1,14 @@
|
||||
goog.provide('ol.test.expression.Lexer');
|
||||
|
||||
describe('ol.expression.Lexer', function() {
|
||||
|
||||
describe('constructor', function() {
|
||||
it('creates a new lexer', function() {
|
||||
var lexer = new ol.expression.Lexer('foo');
|
||||
expect(lexer).to.be.a(ol.expression.Lexer);
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
goog.require('ol.expression.Lexer');
|
||||
Reference in New Issue
Block a user