From: Scott González Date: Tue, 7 Apr 2015 00:28:55 +0000 (-0400) Subject: Tooltip: Convert tests to new infrastructure X-Git-Tag: 1.12.0-beta.1~314 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a2da340e0d1b02d243c71b86382e5e624e7211d6;p=jquery-ui.git Tooltip: Convert tests to new infrastructure Ref #10119 Ref gh-1528 --- diff --git a/tests/unit/tooltip/tooltip.html b/tests/unit/tooltip/tooltip.html index 1a7b94ae2..1f0adc9f4 100644 --- a/tests/unit/tooltip/tooltip.html +++ b/tests/unit/tooltip/tooltip.html @@ -4,34 +4,8 @@ jQuery UI Tooltip Test Suite - - - - - - - - - - - - - - - - + + diff --git a/tests/unit/tooltip/tooltip_common.js b/tests/unit/tooltip/tooltip_common.js index 87e73f7ea..f8045fc33 100644 --- a/tests/unit/tooltip/tooltip_common.js +++ b/tests/unit/tooltip/tooltip_common.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "tooltip", { +define( [ + "lib/common", + "ui/tooltip" +], function( common ) { + +common.testWidget( "tooltip", { defaults: { classes: { "ui-tooltip": "ui-corner-all ui-widget-shadow" @@ -21,3 +26,5 @@ TestHelpers.commonWidgetTests( "tooltip", { open: null } }); + +} ); diff --git a/tests/unit/tooltip/tooltip_common_deprecated.js b/tests/unit/tooltip/tooltip_common_deprecated.js index 6ea0e65ff..d32e7656d 100644 --- a/tests/unit/tooltip/tooltip_common_deprecated.js +++ b/tests/unit/tooltip/tooltip_common_deprecated.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "tooltip", { +define( [ + "lib/common", + "ui/tooltip" +], function( common ) { + +common.testWidget( "tooltip", { defaults: { classes: { "ui-tooltip": "ui-corner-all ui-widget-shadow" @@ -22,3 +27,5 @@ TestHelpers.commonWidgetTests( "tooltip", { open: null } }); + +} ); diff --git a/tests/unit/tooltip/tooltip_core.js b/tests/unit/tooltip/tooltip_core.js index d4520a4ea..fa24d72ce 100644 --- a/tests/unit/tooltip/tooltip_core.js +++ b/tests/unit/tooltip/tooltip_core.js @@ -1,4 +1,7 @@ -(function( $ ) { +define( [ + "jquery", + "ui/tooltip" +], function( $ ) { module( "tooltip: core" ); @@ -218,4 +221,4 @@ asyncTest( "multiple active delegated tooltips", function() { step1(); }); -}( jQuery ) ); +} ); diff --git a/tests/unit/tooltip/tooltip_deprecated.html b/tests/unit/tooltip/tooltip_deprecated.html index 813768337..d21fea57b 100644 --- a/tests/unit/tooltip/tooltip_deprecated.html +++ b/tests/unit/tooltip/tooltip_deprecated.html @@ -4,32 +4,8 @@ jQuery UI Tooltip Test Suite - - - - - - - - - - - - - - - - + + diff --git a/tests/unit/tooltip/tooltip_deprecated.js b/tests/unit/tooltip/tooltip_deprecated.js index a53a27050..057171ee2 100644 --- a/tests/unit/tooltip/tooltip_deprecated.js +++ b/tests/unit/tooltip/tooltip_deprecated.js @@ -1,4 +1,7 @@ -(function( $ ) { +define( [ + "jquery", + "ui/tooltip" +], function( $ ) { module( "tooltip: (deprecated) options" ); @@ -10,4 +13,4 @@ test( "tooltipClass", function( assert ) { assert.hasClasses( $( "#" + element.data( "ui-tooltip-id" ) ), "custom" ); }); -}( jQuery ) ); +} ); diff --git a/tests/unit/tooltip/tooltip_events.js b/tests/unit/tooltip/tooltip_events.js index de16471ae..a953c6e91 100644 --- a/tests/unit/tooltip/tooltip_events.js +++ b/tests/unit/tooltip/tooltip_events.js @@ -1,4 +1,7 @@ -(function( $ ) { +define( [ + "jquery", + "ui/tooltip" +], function( $ ) { module( "tooltip: events" ); @@ -54,4 +57,4 @@ test( "focus events", function() { element.trigger( "focusout" ); }); -}( jQuery ) ); +} ); diff --git a/tests/unit/tooltip/tooltip_methods.js b/tests/unit/tooltip/tooltip_methods.js index f027d5226..3db7b8f7c 100644 --- a/tests/unit/tooltip/tooltip_methods.js +++ b/tests/unit/tooltip/tooltip_methods.js @@ -1,17 +1,20 @@ -(function( $ ) { +define( [ + "jquery", + "ui/tooltip" +], function( $ ) { module( "tooltip: methods" ); -test( "destroy", function() { +test( "destroy", function( assert ) { expect( 3 ); var element = $( "#tooltipped1" ); - domEqual( "#tooltipped1", function() { + assert.domEqual( "#tooltipped1", function() { element.tooltip().tooltip( "destroy" ); }); // make sure that open tooltips are removed on destroy - domEqual( "#tooltipped1", function() { + assert.domEqual( "#tooltipped1", function() { element .tooltip() .tooltip( "open", $.Event( "mouseover", { target: element[0] }) ) @@ -133,4 +136,4 @@ test( "preserve changes to title attributes on close and destroy", function() { } ); }); -}( jQuery ) ); +} ); diff --git a/tests/unit/tooltip/tooltip_options.js b/tests/unit/tooltip/tooltip_options.js index 1d9d6b3f0..d091e3bad 100644 --- a/tests/unit/tooltip/tooltip_options.js +++ b/tests/unit/tooltip/tooltip_options.js @@ -1,4 +1,7 @@ -(function( $ ) { +define( [ + "jquery", + "ui/tooltip" +], function( $ ) { module( "tooltip: options" ); @@ -209,4 +212,4 @@ test( "track and programmatic focus", function() { equal( "inputtitle", $( ".ui-tooltip" ).text() ); }); -}( jQuery ) ); +} );