]> source.dussan.org Git - jquery-ui.git/commitdiff
Tooltip: Added some tests.
authorScott González <scott.gonzalez@gmail.com>
Sat, 28 May 2011 19:43:22 +0000 (15:43 -0400)
committerScott González <scott.gonzalez@gmail.com>
Sat, 28 May 2011 19:43:22 +0000 (15:43 -0400)
tests/unit/tooltip/tooltip_core.js
tests/unit/tooltip/tooltip_options.js

index 055a2927f2ea31deb6ae700b9d8241c78c104deb..d18b8539881efdd15d4c9fbc5009b5a9fd4829a1 100644 (file)
@@ -2,6 +2,25 @@
 
 module( "tooltip: core" );
 
+test( "markup structure", function() {
+       expect( 6 );
+       var element = $( "#tooltipped1" ).tooltip(),
+               tooltip = $( ".ui-tooltip" );
 
+       equal( element.attr( "aria-describedby" ), undefined, "no aria-describedby on init" );
+       equal( tooltip.length, 0, "no tooltip on init" );
+
+       element.tooltip( "open" );
+       tooltip = $( "#" + element.attr( "aria-describedby" ) );
+       equal( tooltip.length, 1, "tooltip exists" );
+       ok( tooltip.hasClass( "ui-tooltip" ), "tooltip is .ui-tooltip" );
+       equal( tooltip.length, 1, ".ui-tooltip exists" );
+       equal( tooltip.find( ".ui-tooltip-content" ).length, 1,
+               ".ui-tooltip-content exists" );
+});
+
+test( "accessibility", function() {
+       // TODO: add tests
+});
 
 }( jQuery ) );
index c9f92c5275c5161b0bad1557e8348d6e531d92ce..c866d219f17d817aff9052c08a7965a5dcb2938d 100644 (file)
@@ -16,7 +16,7 @@ test( "items", function() {
 });
 
 test( "content: default", function() {
-       var element = $( "#tooltipped1" ).tooltip().tooltip("open");
+       var element = $( "#tooltipped1" ).tooltip().tooltip( "open" );
        same( $( "#" + element.attr( "aria-describedby" ) ).text(), "anchortitle" );
 });