aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tooltip/tooltip_deprecated.js
blob: a53a2705091058778b1ac5d3cbaba8f704d804aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(function( $ ) {

module( "tooltip: (deprecated) options" );

test( "tooltipClass", function( assert ) {
	expect( 1 );
	var element = $( "#tooltipped1" ).tooltip({
		tooltipClass: "custom"
	}).tooltip( "open" );
	assert.hasClasses( $( "#" + element.data( "ui-tooltip-id" ) ), "custom" );
});

}( jQuery ) );