]> source.dussan.org Git - jquery-ui.git/commitdiff
Tooltip tests: Added test for widget() method.
authorScott González <scott.gonzalez@gmail.com>
Mon, 27 Aug 2012 00:21:24 +0000 (20:21 -0400)
committerScott González <scott.gonzalez@gmail.com>
Mon, 27 Aug 2012 00:21:24 +0000 (20:21 -0400)
tests/unit/tooltip/tooltip_methods.js

index ef783cbd380b58dca2c51b47ea4a4a46223eda22..0af1e06e95fabb3401b7b7a87adccf6cc70e4dcc 100644 (file)
@@ -59,14 +59,12 @@ test( "enable/disable", function() {
        $.fx.off = false;
 });
 
-/*
-TODO currently tooltip doesn't override widget
-can't return anything useful if no element is kept around and there's no useful reference
-test("widget", function() {
-       var tooltip = $("#tooltipped1").tooltip();
-       deepEqual(tooltip.tooltip("widget")[0], $(".ui-tooltip")[0]);
-       deepEqual(tooltip.tooltip("widget").end()[0], tooltip[0]);
+test( "widget", function() {
+       expect( 2 );
+       var element = $( "#tooltipped1" ).tooltip(),
+               widgetElement = element.tooltip( "widget" );
+       equal( widgetElement.length, 1, "one element" );
+       strictEqual( widgetElement[ 0 ], element[ 0 ], "same element" );
 });
-*/
 
 }( jQuery ) );