Sha256: d487a3fd7441893c6b140aef41cc269369efbe82b119eb47585af54e35f303d8
Contents?: true
Size: 810 Bytes
Versions: 11
Compression:
Stored size: 810 Bytes
Contents
module("Requirements"); test("jQuery",function(){ expect( 2 ); // make sure the right jquery is included ok( window.jQuery, "jQuery exists" ); ok( parseFloat( jQuery([]).jquery ) >= 1.4, "jQuery version is 1.4 or greater" ); }); test("Installation",function(){ expect( 8 ); // make sure the plugin interface is complete ok( jQuery.fn.fire, "FIRE method is defined" ); ok( jQuery.fire, "CONSTRUCTOR is defined" ); ok( jQuery.fire.defaults, "DEFAULTS are defined" ); ok( jQuery.fire.prototype.create, "CREATE method is defined" ); ok( jQuery.fire.prototype.event, "EVENT method is defined" ); ok( jQuery.fire.prototype.mouse, "MOUSE method is defined" ); ok( jQuery.fire.prototype.key, "KEY method is defined" ); ok( jQuery.fire.prototype.dispatch, "DISPATCH method is defined" ); });
Version data entries
11 entries across 11 versions & 1 rubygems