aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/unit/tabs/tabs_deprecated.js23
1 files changed, 21 insertions, 2 deletions
diff --git a/tests/unit/tabs/tabs_deprecated.js b/tests/unit/tabs/tabs_deprecated.js
index 0094bc4f7..e5f7b7568 100644
--- a/tests/unit/tabs/tabs_deprecated.js
+++ b/tests/unit/tabs/tabs_deprecated.js
@@ -22,8 +22,23 @@ test( "panel ids", function() {
module( "tabs (deprecated): options" );
-test('ajaxOptions', function() {
- ok(false, "missing test - untested code is broken code.");
+asyncTest( "ajaxOptions", function() {
+ expect( 1 );
+
+ var element = $( "#tabs2" ).tabs({
+ ajaxOptions: {
+ converters: {
+ "text html": function() {
+ return "test";
+ }
+ }
+ }
+ });
+ element.one( "tabsload", function( event, ui ) {
+ equals( ui.panel.html(), "test" );
+ start();
+ });
+ element.tabs( "option", "active", 2 );
});
test('cache', function() {
@@ -419,4 +434,8 @@ test( "url", function() {
element.tabs( "option", "active", 3 );
});
+test( "abort", function() {
+ ok( false, "missing test - untested code is broken code." );
+});
+
}( jQuery ) );