add tests for SingleFile._getScriptLocation

This commit is contained in:
Éric Lemoine
2012-03-12 09:06:27 +01:00
parent 1ea71fd030
commit 645e2f4016
4 changed files with 48 additions and 0 deletions

15
tests/SingleFile1.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<head>
<script src="some/path/OpenLayers.js"></script>
<script src="../lib/OpenLayers/SingleFile.js"></script>
<script type="text/javascript">
function test_OpenLayers(t) {
t.plan(1);
t.eq(OpenLayers._getScriptLocation(), "some/path/",
"Script location correctly detected (OpenLayers.js).");
}
</script>
</head>
<body>
</body>
</html>

15
tests/SingleFile2.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<head>
<script src="some/path/OpenLayers.light.js"></script>
<script src="../lib/OpenLayers/SingleFile.js"></script>
<script type="text/javascript">
function test_OpenLayers(t) {
t.plan(1);
t.eq(OpenLayers._getScriptLocation(), "some/path/",
"Script location correctly detected (OpenLayers.light.js)<29>.");
}
</script>
</head>
<body>
</body>
</html>

15
tests/SingleFile3.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<head>
<script src="some/path/OpenLayers.light.debug.js"></script>
<script src="../lib/OpenLayers/SingleFile.js"></script>
<script type="text/javascript">
function test_OpenLayers(t) {
t.plan(1);
t.eq(OpenLayers._getScriptLocation(), "some/path/",
"Script location correctly detected (OpenLayers.light.debug.js).");
}
</script>
</head>
<body>
</body>
</html>

View File

@@ -182,6 +182,9 @@
<li>OpenLayers3.html</li>
<li>OpenLayers4.html</li>
<li>OpenLayersJsFiles.html</li>
<li>SingleFile1.html</html>
<li>SingleFile2.html</html>
<li>SingleFile3.html</html>
<li>Popup.html</li>
<li>Popup/Anchored.html</li>
<li>Popup/AnchoredBubble.html</li>