mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
parent
aff3c32ee1
commit
f908a7793b
@ -4,30 +4,8 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>jQuery UI Button Test Suite</title>
|
<title>jQuery UI Button Test Suite</title>
|
||||||
|
|
||||||
<script src="../../jquery.js"></script>
|
<script src="../../lib/css.js" data-modules="core button"></script>
|
||||||
<link rel="stylesheet" href="../../../external/qunit/qunit.css">
|
<script src="../../lib/bootstrap.js" data-widget="button"></script>
|
||||||
<script src="../../../external/qunit/qunit.js"></script>
|
|
||||||
<script src="../../../external/jquery-simulate/jquery.simulate.js"></script>
|
|
||||||
<script src="../testsuite.js"></script>
|
|
||||||
<script src="../../../external/qunit-assert-classes/qunit-assert-classes.js"></script>
|
|
||||||
<script>
|
|
||||||
TestHelpers.loadResources({
|
|
||||||
css: [ "core", "button" ],
|
|
||||||
js: [
|
|
||||||
"ui/core.js",
|
|
||||||
"ui/widget.js",
|
|
||||||
"ui/button.js"
|
|
||||||
]
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script src="button_common.js"></script>
|
|
||||||
<script src="button_core.js"></script>
|
|
||||||
<script src="button_events.js"></script>
|
|
||||||
<script src="button_methods.js"></script>
|
|
||||||
<script src="button_options.js"></script>
|
|
||||||
|
|
||||||
<script src="../swarminject.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
TestHelpers.commonWidgetTests( "button", {
|
define( [
|
||||||
|
"lib/common",
|
||||||
|
"ui/button"
|
||||||
|
], function( common ) {
|
||||||
|
|
||||||
|
common.testWidget( "button", {
|
||||||
defaults: {
|
defaults: {
|
||||||
classes: {},
|
classes: {},
|
||||||
disabled: null,
|
disabled: null,
|
||||||
@ -13,3 +18,5 @@ TestHelpers.commonWidgetTests( "button", {
|
|||||||
create: null
|
create: null
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
} );
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
/*
|
define( [
|
||||||
* button_core.js
|
"jquery",
|
||||||
*/
|
"ui/button"
|
||||||
|
], function( $ ) {
|
||||||
(function($) {
|
|
||||||
|
|
||||||
module("button: core");
|
module("button: core");
|
||||||
|
|
||||||
@ -228,4 +227,4 @@ asyncTest( "#9169 - Disabled button maintains ui-state-focus", function( assert
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
} );
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
define( [
|
||||||
* button_events.js
|
"jquery",
|
||||||
*/
|
"ui/button"
|
||||||
(function($) {
|
], function( $ ) {
|
||||||
|
|
||||||
module("button: events");
|
module("button: events");
|
||||||
|
|
||||||
@ -33,4 +33,4 @@ asyncTest( "when button loses focus, ensure active state is removed (#8559)", fu
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
} );
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
/*
|
define( [
|
||||||
* button_methods.js
|
"jquery",
|
||||||
*/
|
"ui/button"
|
||||||
(function($) {
|
], function( $ ) {
|
||||||
|
|
||||||
module("button: methods");
|
module("button: methods");
|
||||||
|
|
||||||
test("destroy", function() {
|
test("destroy", function( assert ) {
|
||||||
expect( 1 );
|
expect( 1 );
|
||||||
domEqual( "#button", function() {
|
assert.domEqual( "#button", function() {
|
||||||
$( "#button" ).button().button( "destroy" );
|
$( "#button" ).button().button( "destroy" );
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -70,4 +70,4 @@ test( "refresh: buttonset should turn added elements into button widgets", funct
|
|||||||
equal( checkboxButtonset.find( ":ui-button" ).length, 4, "checkbox" );
|
equal( checkboxButtonset.find( ":ui-button" ).length, 4, "checkbox" );
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
} );
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
define( [
|
||||||
* button_options.js
|
"jquery",
|
||||||
*/
|
"ui/button"
|
||||||
(function($) {
|
], function( $ ) {
|
||||||
|
|
||||||
module( "button: options" );
|
module( "button: options" );
|
||||||
|
|
||||||
@ -154,4 +154,4 @@ test( "#5295 - button does not remove hoverstate if disabled" , function( assert
|
|||||||
assert.lacksClasses( btn, "ui-state-hover" );
|
assert.lacksClasses( btn, "ui-state-hover" );
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
} );
|
||||||
|
Loading…
Reference in New Issue
Block a user