Some more l10n strings
[ajatus.git] / testsuite / tests / basic.js
blob1d845b6ad58f0c0940f317167e78ca10852f93db
1 $.getScript( "../js/jqcouch.js" );
3 module("Basic");
5 test("Basic requirements", function() {
6 expect(7);
7 ok( Array.prototype.push, "Array.push()" );
8 ok( Function.prototype.apply, "Function.apply()" );
9 ok( document.getElementById, "getElementById" );
10 ok( document.getElementsByTagName, "getElementsByTagName" );
11 ok( RegExp, "RegExp" );
12 ok( jQuery, "jQuery" );
13 ok( $, "$()" );
14 });