Revert r6710: The new popup coe is going to need to change tests, so this
needs to wait. git-svn-id: http://svn.openlayers.org/trunk/openlayers@6711 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
29
tests/test_Rule.html
Normal file
29
tests/test_Rule.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<script src="../lib/OpenLayers.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
function test_Rule_constructor(t) {
|
||||
t.plan(3);
|
||||
|
||||
var options = {'foo': 'bar'};
|
||||
var rule = new OpenLayers.Rule(options);
|
||||
t.ok(rule instanceof OpenLayers.Rule,
|
||||
"new OpenLayers.Rule returns object" );
|
||||
t.eq(rule.foo, "bar", "constructor sets options correctly");
|
||||
t.eq(typeof rule.evaluate, "function", "rule has an evaluate function");
|
||||
}
|
||||
|
||||
function test_Rule_destroy(t) {
|
||||
t.plan(1);
|
||||
|
||||
var rule = new OpenLayers.Rule();
|
||||
rule.destroy();
|
||||
t.eq(rule.symbolizer, null, "symbolizer hash nulled properly");
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user