mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Datpicker: Fixed some failing tests.
This commit is contained in:
parent
7832fd8e9c
commit
4226faed09
@ -710,7 +710,7 @@ test('localisation', function() {
|
||||
equals($('.ui-datepicker-close', dp).text(), 'Fermer', 'Localisation - close');
|
||||
$('.ui-datepicker-close', dp).simulate('mouseover');
|
||||
equals($('.ui-datepicker-prev', dp).text(), '<Préc', 'Localisation - previous');
|
||||
equals($('.ui-datepicker-current', dp).text(), 'Courant', 'Localisation - current');
|
||||
equals($('.ui-datepicker-current', dp).text(), 'Aujourd\'hui', 'Localisation - current');
|
||||
equals($('.ui-datepicker-next', dp).text(), 'Suiv>', 'Localisation - next');
|
||||
var month = 0;
|
||||
$('.ui-datepicker-month option', dp).each(function() {
|
||||
|
@ -15,17 +15,17 @@ test('beforeShowDay-getDate', function() {
|
||||
var inp = init('#inp', {beforeShowDay: function(date) { inp.datepicker('getDate'); return [true, '']; }});
|
||||
var dp = $('#ui-datepicker-div');
|
||||
inp.val('01/01/2010').datepicker('show');
|
||||
// result has line-break instead of space inbetween, therefore comparsion fails
|
||||
equals($('div.ui-datepicker-title').text(), 'January 2010', 'Initial month');
|
||||
// contains non-breaking space
|
||||
equals($('div.ui-datepicker-title').text(), 'January 2010', 'Initial month');
|
||||
$('a.ui-datepicker-next', dp).click();
|
||||
$('a.ui-datepicker-next', dp).click();
|
||||
// fails, see above
|
||||
equals($('div.ui-datepicker-title').text(), 'March 2010', 'After next clicks');
|
||||
// contains non-breaking space
|
||||
equals($('div.ui-datepicker-title').text(), 'March 2010', 'After next clicks');
|
||||
inp.datepicker('hide').datepicker('show');
|
||||
$('a.ui-datepicker-prev', dp).click();
|
||||
$('a.ui-datepicker-prev', dp).click();
|
||||
// fails, see above
|
||||
equals($('div.ui-datepicker-title').text(), 'November 2009', 'After prev clicks');
|
||||
// contains non-breaking space
|
||||
equals($('div.ui-datepicker-title').text(), 'November 2009', 'After prev clicks');
|
||||
inp.datepicker('hide');
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user