git-svn-id: http://svn.openlayers.org/branches/openlayers/2.7@8012 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
24 lines
667 B
HTML
24 lines
667 B
HTML
<html>
|
|
<head>
|
|
<script src="../../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
function test_initialize(t) {
|
|
t.plan(3);
|
|
var options = {tableName: 'my_features',
|
|
databaseName: 'my_database_name'}
|
|
var protocol = new OpenLayers.Protocol.SQL(options);
|
|
|
|
t.ok(protocol instanceof OpenLayers.Protocol.SQL,
|
|
"new OpenLayers.Protocol.SQL returns object");
|
|
|
|
t.eq(protocol.tableName, options.tableName, "tableName property is set");
|
|
t.eq(protocol.databaseName, options.databaseName, "databaseName property is set");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|