Merge remote-tracking branch 'origin/master' into mocha

Conflicts:
	test/jasmine-extensions.js
This commit is contained in:
Tobias Bieniek
2013-03-13 04:46:16 +01:00
84 changed files with 6811 additions and 70 deletions
+17
View File
@@ -0,0 +1,17 @@
goog.provide('ol.test.source.Vector');
describe('ol.source.Vector', function() {
describe('constructor', function() {
it('creates an instance', function() {
var source = new ol.source.Vector({});
expect(source).toBeA(ol.source.Vector);
expect(source).toBeA(ol.source.Source);
});
});
});
goog.require('ol.source.Source');
goog.require('ol.source.Vector');