Adding a format for parsing WMS capabilities docs. r=ahocevar (closes #1176)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9212 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2009-04-06 18:55:20 +00:00
parent 64b4752592
commit ebb7a08325
9 changed files with 5273 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<html>
<head>
<script src="../../lib/OpenLayers.js"></script>
<script type="text/javascript">
function test_initialize(t) {
t.plan(1);
var format = new OpenLayers.Format.WMSCapabilities({
version: "foo"
});
t.eq(format.version, "foo", "version set on format");
}
</script>
</head>
<body>
</body>
</html>