1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-28 08:12:42 +01:00

Comment added for date lapse issue.

This commit is contained in:
Cameron 2018-10-04 15:54:28 -07:00
parent 871a0f4da3
commit 10a21270f4

View File

@ -167,6 +167,13 @@
$actual = $this->dateObj->computeLapse($older, $newer, false, true, 'long');
$expected = '1 day, 22 hours, 49 minutes, 55 seconds ago';
$this->assertEquals($expected, $actual);
//FIXME fails with future dates. Expected: "In 2 weeks" or "2 weeks from now"
$newer = strtotime("+2 weeks");
$actual = $this->dateObj->computeLapse($newer, time(), false, true, 'short');
// var_dump($actual);
}
/**
@ -232,4 +239,11 @@
// $this->fail(print_r($result,true));
}
}