diff options
author | Urban Müller | 2025-03-26 15:18:32 +0100 |
---|---|---|
committer | Urban Müller | 2025-03-26 15:18:41 +0100 |
commit | eac020907afced2c33db53b564a80e4764dfe3b7 (patch) | |
tree | c51b6e77ae51cc27fae76466908966461f7a06c2 /test | |
parent | 470fef0c3b772bf24ed161641ae9d2bd92fac4fa (diff) | |
download | itools-eac020907afced2c33db53b564a80e4764dfe3b7.tar.gz itools-eac020907afced2c33db53b564a80e4764dfe3b7.tar.bz2 itools-eac020907afced2c33db53b564a80e4764dfe3b7.zip |
Diffstat (limited to 'test')
-rwxr-xr-x | test/it.t | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -420,6 +420,10 @@ is(it::date('datetime', 1000000), it::date('datetime', "1000000"), '... large nu 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'); +is(it::date('Y-m-d', "20000101"), '2000-01-01', 'interpret 8 digit strings as dates'); +is(it::date('Y-m-d', 20000101), '2000-01-01', 'interpret 8 numbers strings as dates'); +is(it::date('Y-m-d', "20990101"), '2099-01-01', 'interpret 8 digit strings as dates'); +is(it::date('Y-m-d', strtotime("1980-01-01")), '1980-01-01', 'interpret typical time stamps correctly'); # it::uc* is(it::ucfirst('foo bär über'), 'Foo bär über'); |