Files
openlayers/test/spec/ol/binary.test.js
2015-04-13 21:13:26 +02:00

17 lines
327 B
JavaScript

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