Changeset 7982 for trunk/openlayers/tests/Format.html
- Timestamp:
- 09/08/08 17:31:39 (4 months ago)
- Files:
-
- trunk/openlayers/tests/Format.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/tests/Format.html
r6724 r7982 5 5 6 6 function test_Format_constructor(t) { 7 t.plan( 4);7 t.plan(5); 8 8 9 9 var options = {'foo': 'bar'}; … … 14 14 t.eq(typeof format.read, "function", "format has a read function"); 15 15 t.eq(typeof format.write, "function", "format has a write function"); 16 t.eq(format.options, options, "format.options correctly set"); 16 17 } 17 18
