Calendar tests: Fix min / max range header button state tests

This commit is contained in:
Felix Nagel 2015-08-26 12:06:20 +02:00
parent 3135e5bb37
commit 9c88ac943b

View File

@ -251,12 +251,12 @@ test( "min / max", function() {
element
.calendar( "option", { max: null } )
.calendar( "value", "1/4/15" )
.calendar( "option", { max: maxDate } );
.calendar( "value", "1/4/09" )
.calendar( "option", { min: minDate, max: maxDate } );
ok( nextButton.hasClass( "ui-state-disabled" ), "Other year: Next button disabled" );
nextButton.simulate( "click" );
prevButton.simulate( "click" );
ok( nextButton.hasClass( "ui-state-disabled" ), "Other year: Next button disabled after click" );
nextButton.simulate( "click" );
prevButton.simulate( "click" );
ok( !nextButton.hasClass( "ui-state-disabled" ), "Other year: Next button enabled after click" );
});