Datpicker: Fixed some failing tests.

This commit is contained in:
Scott González 2010-11-05 10:44:55 -04:00
parent 7832fd8e9c
commit 4226faed09
2 changed files with 7 additions and 7 deletions

View File

@ -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() {

View File

@ -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');
});