datepicker: removing odd ticket test, has no assertions

This commit is contained in:
Jörn Zaefferer 2009-09-19 13:36:49 +00:00
parent b19f2fe478
commit c59c0421ba

View File

@ -5,18 +5,4 @@
module("datepicker: tickets");
test('#4055: onclick events contain references to "jQuery"', function() {
// no assertions, if the test fails, there will be an error
var _jQuery = jQuery;
jQuery = null;
$('<div/>').appendTo('body').datepicker()
// the third weekend day always exists
.find('tbody .ui-datepicker-week-end:eq(3)').click().end()
.datepicker('destroy');
jQuery = _jQuery;
});
})(jQuery);