Searched refs:test_ParseDuration (Results 1 – 1 of 1) sorted by relevance
6 def test_ParseDuration(s, expected): function12 test_ParseDuration("1w", 604800)13 test_ParseDuration("1d", 86400)14 test_ParseDuration("1h", 3600)15 test_ParseDuration("1m", 60)16 test_ParseDuration("1s", 1)17 test_ParseDuration("1w1d1h1m1s", 694861)