summaryrefslogtreecommitdiff
path: root/misc/openlayers/tests/Format/WMSCapabilities.html
blob: a447bddcd4d4ff16baff125bd16a8aef54dde681 (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.WMSCapabilities({
            version: "foo"
        });
        t.eq(format.version, "foo", "version set on format");
        
    }
    
    </script> 
</head> 
<body>
</body> 
</html>