mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Spinner tests: Removed IE 6 hack in destroy test.
This commit is contained in:
parent
ca2211f748
commit
b8976207f3
@ -2,17 +2,6 @@
|
||||
|
||||
module( "spinner: core" );
|
||||
|
||||
// TODO: move to spinner_methods
|
||||
test( "destroy", function() {
|
||||
expect( 1 );
|
||||
// TODO: is this cheat still needed?
|
||||
// cheat a bit to get IE6 to pass
|
||||
$( "#spin" ).val( 0 );
|
||||
domEqual( "#spin", function() {
|
||||
$( "#spin" ).spinner().spinner( "destroy" );
|
||||
});
|
||||
});
|
||||
|
||||
test( "keydown UP on input, increases value not greater than max", function() {
|
||||
expect( 5 );
|
||||
var element = $( "#spin" ).spinner({
|
||||
|
@ -2,6 +2,13 @@
|
||||
|
||||
module( "spinner: methods" );
|
||||
|
||||
test( "destroy", function() {
|
||||
expect( 1 );
|
||||
domEqual( "#spin", function() {
|
||||
$( "#spin" ).spinner().spinner( "destroy" );
|
||||
});
|
||||
});
|
||||
|
||||
test( "disable", function() {
|
||||
expect( 14 );
|
||||
var element = $( "#spin" ).spinner({ value: 2 }),
|
||||
|
Loading…
Reference in New Issue
Block a user