Order test cases alphabetically

This commit is contained in:
Tom Payne
2013-12-02 12:04:38 +01:00
parent c36920774a
commit c3378d0bd5

View File

@@ -35,15 +35,6 @@ describe('ol.geom.flat', function() {
});
describe('ol.geom.flat.inflateCoordinates', function() {
it('inflates coordinates', function() {
var coordinates = ol.geom.flat.inflateCoordinates([1, 2, 3, 4], 0, 4, 2);
expect(coordinates).to.eql([[1, 2], [3, 4]]);
});
});
describe('ol.geom.flat.flipXY', function() {
it('can flip XY coordinates', function() {
@@ -75,6 +66,15 @@ describe('ol.geom.flat', function() {
});
describe('ol.geom.flat.inflateCoordinates', function() {
it('inflates coordinates', function() {
var coordinates = ol.geom.flat.inflateCoordinates([1, 2, 3, 4], 0, 4, 2);
expect(coordinates).to.eql([[1, 2], [3, 4]]);
});
});
describe('ol.geom.flat.inflateCoordinatess', function() {
it('inflates arrays of coordinates', function() {