summaryrefslogtreecommitdiffstats
path: root/apps/it/static/js/ui/tests/unit/button/button_methods.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/static/js/ui/tests/unit/button/button_methods.js')
-rw-r--r--apps/it/static/js/ui/tests/unit/button/button_methods.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/apps/it/static/js/ui/tests/unit/button/button_methods.js b/apps/it/static/js/ui/tests/unit/button/button_methods.js
deleted file mode 100644
index 467938f..0000000
--- a/apps/it/static/js/ui/tests/unit/button/button_methods.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * button_methods.js
- */
-(function($) {
-
-
-module("button: methods");
-
-test("destroy", function() {
- expect( 1 );
- domEqual( "#button", function() {
- $( "#button" ).button().button( "destroy" );
- });
-});
-
-test( "refresh: Ensure disabled state is preserved correctly.", function() {
- expect( 8 );
-
- var element = $( "<a href='#'></a>" );
- element.button({ disabled: true }).button( "refresh" );
- ok( element.button( "option", "disabled" ), "Anchor button should remain disabled after refresh" ); //See #8237
-
- element = $( "<div></div>" );
- element.button({ disabled: true }).button( "refresh" );
- ok( element.button( "option", "disabled" ), "<div> buttons should remain disabled after refresh" );
-
- element = $( "<button></button>" );
- element.button( { disabled: true} ).button( "refresh" );
- ok( element.button( "option", "disabled" ), "<button> should remain disabled after refresh");
-
- element = $( "<input type='checkbox'>" );
- element.button( { disabled: true} ).button( "refresh" );
- ok( element.button( "option", "disabled" ), "Checkboxes should remain disabled after refresh");
-
- element = $( "<input type='radio'>" );
- element.button( { disabled: true} ).button( "refresh" );
- ok( element.button( "option", "disabled" ), "Radio buttons should remain disabled after refresh");
-
- element = $( "<button></button>" );
- element.button( { disabled: true} ).prop( "disabled", false ).button( "refresh" );
- ok( !element.button( "option", "disabled" ), "Changing a <button>'s disabled property should update the state after refresh."); //See #8828
-
- element = $( "<input type='checkbox'>" );
- element.button( { disabled: true} ).prop( "disabled", false ).button( "refresh" );
- ok( !element.button( "option", "disabled" ), "Changing a checkbox's disabled property should update the state after refresh.");
-
- element = $( "<input type='radio'>" );
- element.button( { disabled: true} ).prop( "disabled", false ).button( "refresh" );
- ok( !element.button( "option", "disabled" ), "Changing a radio button's disabled property should update the state after refresh.");
-});
-
-})(jQuery);