diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2014-01-22 12:02:32 -0500 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-07 10:57:59 -0400 |
commit | 02033262ee0fb1d9f33c361b3c2ddfa168604854 (patch) | |
tree | 645ed2427d14a598d02754b79e9eb8b889baf846 /tests/unit/button/methods.js | |
parent | 79d312f3f5cb5629d1bd7f9f899b41f304c388ef (diff) | |
download | jquery-ui-02033262ee0fb1d9f33c361b3c2ddfa168604854.tar.gz jquery-ui-02033262ee0fb1d9f33c361b3c2ddfa168604854.zip |
Button: Initial commit of button re-factor
Move to using element stats rather then js class states remove
ui-button-text spans.
Removed button set
Diffstat (limited to 'tests/unit/button/methods.js')
-rw-r--r-- | tests/unit/button/methods.js | 51 |
1 files changed, 6 insertions, 45 deletions
diff --git a/tests/unit/button/methods.js b/tests/unit/button/methods.js index 0bafd90f9..09a91bbc0 100644 --- a/tests/unit/button/methods.js +++ b/tests/unit/button/methods.js @@ -3,7 +3,7 @@ define( [ "ui/widgets/button" ], function( $ ) { -module( "button: methods" ); +module( "Button: methods" ); test( "destroy", function( assert ) { expect( 1 ); @@ -13,61 +13,22 @@ test( "destroy", function( assert ) { } ); test( "refresh: Ensure disabled state is preserved correctly.", function() { - expect( 8 ); + expect( 3 ); 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" ); + ok( element.button( "option", "disabled" ), + "Anchor button 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." ); -} ); - -// #8975 -test( "refresh: buttonset should turn added elements into button widgets", function() { - expect( 2 ); - var radioButtonset = $( "#radio0" ).buttonset(), - checkboxButtonset = $( "#checkbox0" ).buttonset(); - - radioButtonset.append( - "<input type='radio' name='radio' id='radio04'>" + - "<label for='radio04'>Choice 4</label>" - ); - checkboxButtonset.append( - "<input type='checkbox' name='checkbox' id='checkbox04'>" + - "<label for='checkbox04'>Choice 4</label>" - ); - - radioButtonset.buttonset( "refresh" ); - checkboxButtonset.buttonset( "refresh" ); + ok( !element.button( "option", "disabled" ), + "Changing a <button>'s disabled property should update the state after refresh." ); - equal( radioButtonset.find( ":ui-button" ).length, 4, "radio" ); - equal( checkboxButtonset.find( ":ui-button" ).length, 4, "checkbox" ); } ); } ); |