summaryrefslogtreecommitdiff
path: root/misc/openlayers/tests/Format/WMTSCapabilities.html
blob: e7a51a35ee1cdcab878c28d73c7d40cc545a485b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>