vieter/src/cron/expression_test.v

6 lines
97 B
V

module cron
fn test_parse_star_range() {
assert parse_range('*', 0, 5) == [0, 1, 2, 3, 4, 5]
}