spec/tests/map.tests.js
changeset 0 54063d8b0412
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/spec/tests/map.tests.js	Tue Jul 06 11:31:19 2010 -0700
@@ -0,0 +1,12 @@
+Tests.prototype.MapTests = function() {	
+	module('Map (navigator.map)');
+	test("should exist", function() {
+  		expect(1);
+  		ok(navigator.map != null, "navigator.map should not be null.");
+	});
+	test("should contain a show function", function() {
+		expect(2);
+		ok(navigator.map.show != null, "navigator.map.show should not be null.");
+		ok(typeof navigator.map.show == 'function', "navigator.map.show should be a function.");
+	});
+};
\ No newline at end of file