fix up tests, remove _01_. (Closes #1387)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@6724 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2008-03-31 05:31:28 +00:00
parent 0d6174db7f
commit 3e348f450e
65 changed files with 373 additions and 373 deletions

View File

@@ -3,7 +3,7 @@
<script src="../../lib/OpenLayers.js"></script>
<script type="text/javascript">
function test_01_Rectangle_constructor (t) {
function test_Rectangle_constructor (t) {
t.plan( 8 );
//empty
@@ -25,7 +25,7 @@
t.eq( rect.height, h, "good init correctly sets height property");
}
function test_02_Rectangle_calculateBounds(t) {
function test_Rectangle_calculateBounds(t) {
t.plan(1);
var x = 1;
@@ -40,7 +40,7 @@
t.ok( rect.bounds.equals(testBounds), "calculateBounds works correctly");
}
function test_03_Rectangle_getLength(t) {
function test_Rectangle_getLength(t) {
t.plan(1);
var x = 1;
@@ -54,7 +54,7 @@
t.eq(rect.getLength(), testLength, "getLength() works");
}
function test_04_Rectangle_getArea(t) {
function test_Rectangle_getArea(t) {
t.plan(1);
var x = 1;