This commit is contained in:
Jörn Zaefferer 2007-12-17 17:39:50 +00:00
parent 90b25efa6c
commit 70ae356e4e

View file

@ -263,3 +263,11 @@ test("toggle(Function, Function)", function() {
return false;
}).click().click().click();
});
test("jQuery(function($) {})", function() {
stop();
jQuery(function($) {
equals(jQuery, $, "ready doesn't provide an event object, instead it provides a reference to the jQuery function, see http://docs.jquery.com/Events/ready#fn");
start();
});
});