A passing test.

This commit is contained in:
Tim Schaub
2012-06-19 11:14:53 +02:00
parent b1e26fab1d
commit 77c07a500e
6 changed files with 26 additions and 35 deletions

View File

@@ -6,7 +6,10 @@ describe("ol.Projection", function() {
p = ol.projection("foo");
expect(p.code()).toBe("foo");
p = ol.projection({code: "bar"});
p = ol.projection({
code: "bar",
units: "m"
});
expect(p.code()).toBe("bar");
});