jquery-ui/tests/unit/button/button_methods.js

17 lines
220 B
JavaScript
Raw Normal View History

2010-01-20 14:00:14 +00:00
/*
* button_methods.js
*/
(function($) {
module("button: methods");
test("destroy", function() {
expect( 1 );
domEqual( "#button", function() {
$( "#button" ).button().button( "destroy" );
});
2010-01-20 14:00:14 +00:00
});
})(jQuery);