View | Details | Raw Unified | Return to bug 5644
Collapse All | Expand All

(-)a/t/Kalendar.t (-2 / +1 lines)
Lines 59-62 my $dt = $cal->addDate( $saturday, 1, 'days' ); Link Here
59
is( $dt->day_of_week, 1, 'addDate skips closed Sunday' );
59
is( $dt->day_of_week, 1, 'addDate skips closed Sunday' );
60
60
61
$dt = $cal->addDate( $bloomsday, -1 );
61
$dt = $cal->addDate( $bloomsday, -1 );
62
cmp_ok( $dt->ymd(), 'cmp', '2011-06-15', 'Negative call to addDate' );
62
is( $dt->ymd(), '2011-06-15', 'Negative call to addDate' );
63
- 

Return to bug 5644