]> source.dussan.org Git - jquery-ui.git/commitdiff
Tabs: Updated test for deprecated length method.
authorScott González <scott.gonzalez@gmail.com>
Wed, 6 Apr 2011 00:07:27 +0000 (20:07 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 6 Apr 2011 00:07:27 +0000 (20:07 -0400)
tests/unit/tabs/tabs_deprecated.js

index 9c816734a1c587a30a94ee56cab7bd43e5d5f9ee..77bf645a6708c63f4d14aea139552adbbe081c2d 100644 (file)
@@ -319,11 +319,11 @@ test('#5069 - ui.tabs.add creates two tab panels when using a full URL', functio
        equals(el.children('div').length, el.find('> ul > li').length, 'After add, number of panels should be equal to number of tabs');
 });
 
-test('length', function() {
-       expect(1);
+test( "length", function() {
+       expect( 2 );
 
-       el = $('#tabs1').tabs();
-       equals(el.tabs('length'), $('ul a', el).length, ' should return length');
+       equals( $( "#tabs1" ).tabs().tabs( "length" ), 3, "basic tabs" );
+       equals( $( "#tabs2" ).tabs().tabs( "length" ), 4, "ajax tabs with missing panels" );
 });
 
 test('url', function() {