mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
21 lines
394 B
HTML
21 lines
394 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.WMTSCapabilities({
|
|
version: "foo"
|
|
});
|
|
t.eq(format.version, "foo", "version set on format");
|
|
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|