Sha256: 5ed2866e57b40b41373d241a7cf8dcb96bb850affd90c943f4002ac16710ea7c

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

<html>
<head>
  <script src="../OLLoader.js"></script>
  <script type="text/javascript">
    function test_ctor_draw(t) {
        t.plan(5);
        var map = new OpenLayers.Map('map');
        var vLayer = new OpenLayers.Layer.Vector();
        map.addLayer(vLayer);
        
        var editingToolbar = new OpenLayers.Control.EditingToolbar(vLayer, {
            citeCompliant: "foo"
        });
        map.addControl(editingToolbar);
        
        t.ok(editingToolbar instanceof OpenLayers.Control.EditingToolbar,
                "new OpenLayers.Control.EditingToolbar returns object" );
        t.ok(editingToolbar.controls[0] instanceof OpenLayers.Control.Navigation,
                "EditingToolbar contains Control.Navigation object" );
        t.eq(editingToolbar.controls[0].active, true,
                "First control is active" );
        t.eq(editingToolbar.controls.length, 4,
                "EditingToolbar contains 4 Controls" );
        t.eq(editingToolbar.controls[1].handler.citeCompliant, "foo", "citeCompliant option passed to handler correctly")
        
        map.destroy();
    }
  </script>
</head>
<body>
    <div id="map" style="width: 1024px; height: 512px;"/>
</body>
</html>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
postrunner-0.0.10 misc/openlayers/tests/Control/EditingToolbar.html
postrunner-0.0.9 misc/openlayers/tests/Control/EditingToolbar.html
postrunner-0.0.8 misc/openlayers/tests/Control/EditingToolbar.html
postrunner-0.0.7 misc/openlayers/tests/Control/EditingToolbar.html
postrunner-0.0.6 misc/openlayers/tests/Control/EditingToolbar.html
postrunner-0.0.5 misc/openlayers/tests/Control/EditingToolbar.html
postrunner-0.0.4 misc/openlayers/tests/Control/EditingToolbar.html