aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/button/button_events.js
blob: ad83101d0893c6b87ffe8a9a8ca2b7b5978c444d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * button_events.js
 */
(function($) {

module("button: events");

test("buttonset works with single-quote named elements (#7505)", function() {
	expect( 1 );
	$("#radio3").buttonset();
	$("#radio33").click( function(){
		ok( true, "button clicks work with single-quote named elements" );
	}).click();
});

})(jQuery);