git-svn-id: http://svn.openlayers.org/trunk/openlayers@11162 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
21 lines
393 B
HTML
21 lines
393 B
HTML
<html>
|
|
<head>
|
|
<script src="../OLLoader.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>
|