Smoke test for ol.Projection.getTransformFromCodes

This commit is contained in:
Tim Schaub
2013-02-25 10:13:04 -07:00
parent 48e69f7559
commit 72ba8c4cbd

View File

@@ -125,6 +125,17 @@ describe('ol.Projection', function() {
});
describe('ol.Projection.getTransformFromCodes()', function() {
it('returns a transform function', function() {
debugger;
var transform = ol.Projection.getTransformFromCodes(
'GOOGLE', 'EPSG:4326');
expect(typeof transform).toBe('function');
});
});
});
goog.require('goog.array');