diff options
author | Christian Schneider | 2011-11-08 17:33:33 +0000 |
---|---|---|
committer | Christian Schneider | 2011-11-08 17:33:33 +0000 |
commit | 684195f906f6c274ef6e95d46660fe9516311b8f (patch) | |
tree | e3b9769920b07173b49c23d82c7942b5d069fa1d /tests | |
parent | 75dec80e40bdff05d84fe02ebde51eebedbf3989 (diff) | |
download | itools-684195f906f6c274ef6e95d46660fe9516311b8f.tar.gz itools-684195f906f6c274ef6e95d46660fe9516311b8f.tar.bz2 itools-684195f906f6c274ef6e95d46660fe9516311b8f.zip |
Change it::date() to treat float as timestamp, only string with dots like 10.45 are handed to strtotime()
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it.t | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -236,11 +236,11 @@ is(it::date('datetime', time() . ''), it::date('datetime'), 'recognize digit str is(it::date('datetime', '@' . time()), it::date('datetime'), 'recognize strtotime timestamp format'); is(it::date('datetime', 10), it::date('datetime', "10"), 'numeric and string give same result'); is(it::date('datetime', 10.0), it::date('datetime', "10"), '... as long as num is properly truncated'); -is(it::date('datetime', 10.5), it::date('datetime', "10.5"), '... with one digit after point'); -is(it::date('datetime', 10.56), it::date('datetime', "10.56"), '... with two digits after point'); +is(it::date('datetime', 10.5), it::date('datetime', "10"), '... with one digit after point'); +is(it::date('datetime', 10.56), it::date('datetime', "10"), '... with two digits after point'); is(it::date('datetime', 1000000), it::date('datetime', "1000000"), '... large nummer'); -is(it::date('datetime', 1000000.543), it::date('datetime', "1000000.543"), '... large nummer and point'); -is(it::date('time', 10.5), "10:05", 'interpret floating points with strtotime'); -is(it::date('time', 10.05), "10:05", 'interpret floating points with strtotime'); +is(it::date('datetime', 1000000.543), it::date('datetime', "1000000"), '... large nummer and point'); +is(it::date('time', "10.5"), "10:05", 'interpret string with points with strtotime'); +is(it::date('time', "10.05"), "10:05", 'interpret string with points with strtotime'); ?> |