Add basic test for ol.interaction.Snap

This commit is contained in:
Marc Jansen
2015-04-09 08:50:46 +02:00
parent 3e4d6f0b02
commit e283d6f54a

View File

@@ -0,0 +1,16 @@
goog.provide('ol.test.interaction.Snap');
describe('ol.interaction.Snap', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.interaction.Snap();
expect(instance).to.be.an(ol.interaction.Snap);
});
});
});
goog.require('ol.interaction.Snap');