Skip to content

Commit 46f325e

Browse files
committed
test(expr): arbitrary white space delimiter
1 parent 74f8dfc commit 46f325e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/ExpressionTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ public function scheduleProvider()
103103

104104
['*/2 */2 * * *', '2015-08-10 21:47:27', '2015-08-10 22:00:00', false],
105105
['* * * * *', '2015-08-10 21:50:37', '2015-08-10 21:50:00', true],
106+
['* * * * * ', '2015-08-10 21:50:37', '2015-08-10 21:50:00', true],
107+
['* * * * *', '2015-08-10 21:50:37', '2015-08-10 21:50:00', true],
108+
["*\t*\t*\t*\t*", '2015-08-10 21:50:37', '2015-08-10 21:50:00', true],
109+
["*\t\t*\t\t*\t\t*\t\t*", '2015-08-10 21:50:37', '2015-08-10 21:50:00', true],
106110
['* 20,21,22 * * *', '2015-08-10 21:50:00', '2015-08-10 21:50:00', true],
107111
// Handles CSV values
108112
['* 20,22 * * *', '2015-08-10 21:50:00', '2015-08-10 22:00:00', false],

0 commit comments

Comments
 (0)