()
| 12 | |
| 13 | |
| 14 | def test_init_with_missing_values(): |
| 15 | t = pendulum.time(12, 34, 56) |
| 16 | assert_time(t, 12, 34, 56, 0) |
| 17 | |
| 18 | t = pendulum.time(12, 34) |
| 19 | assert_time(t, 12, 34, 0, 0) |
| 20 | |
| 21 | t = pendulum.time(12) |
| 22 | assert_time(t, 12, 0, 0, 0) |
nothing calls this directly
no test coverage detected
searching dependent graphs…