Add basic test for ol.binary.Buffer
This commit is contained in:
16
test/spec/ol/binary.test.js
Normal file
16
test/spec/ol/binary.test.js
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
goog.provide('ol.test.buffer');
|
||||||
|
|
||||||
|
describe('ol.binary.Buffer', function() {
|
||||||
|
|
||||||
|
describe('constructor', function() {
|
||||||
|
|
||||||
|
it('can be constructed without arguments', function() {
|
||||||
|
var instance = new ol.binary.Buffer();
|
||||||
|
expect(instance).to.be.an(ol.binary.Buffer);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
goog.require('ol.binary.Buffer');
|
||||||
Reference in New Issue
Block a user