Shuffle assertions

This commit is contained in:
Tim Schaub
2016-08-09 00:05:25 -06:00
parent c40e1bc29b
commit d02cf1e7a9
39 changed files with 154 additions and 143 deletions
+16
View File
@@ -0,0 +1,16 @@
goog.provide('ol.asserts.asserts.test');
goog.require('ol.asserts');
describe('ol.asserts', function() {
describe('ol.asserts.assert', function() {
it('throws an exception', function() {
expect(function() {
ol.asserts.assert(false, 42);
}).to.throwException();
});
});
});