spec/tests/sms.tests.js
author Ryan Willoughby <ryan.willoughby@nitobi.com>
Tue, 06 Jul 2010 11:31:19 -0700
changeset 0 54063d8b0412
permissions -rwxr-xr-x
initial commit of PhoneGap WRT framework, licensing and test code

Tests.prototype.SMSTests = function() {	
	module('SMS (navigator.sms)');
	test("should exist", function() {
  		expect(1);
  		ok(navigator.sms != null, "navigator.sms should not be null.");
	});
	test("should contain a send function", function() {
		expect(2);
		ok(typeof navigator.sms.send != 'undefined' && navigator.sms.send != null, "navigator.sms.send should not be null.");
		ok(typeof navigator.sms.send == 'function', "navigator.sms.send should be a function.");
	});
};