19 lines
523 B
HTML
19 lines
523 B
HTML
<html>
|
|
<head>
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
function test_OpenLayers(t) {
|
|
t.plan(3);
|
|
|
|
t.eq(OpenLayers._getScriptLocation(), "../", "Script location correctly detected.");
|
|
|
|
t.ok(OpenLayers.ImgPath !== undefined, "An ImgPath property exists.");
|
|
|
|
t.eq(OpenLayers.ImgPath, '', "The default for OpenLayers.ImgPath is the empty string.");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|