()
| 23 | |
| 24 | |
| 25 | def test_months(): |
| 26 | pi = pendulum.duration(months=3) |
| 27 | assert_duration(pi, months=3, weeks=0) |
| 28 | assert pi.days == 90 |
| 29 | assert pi.total_seconds() == 7776000 |
| 30 | |
| 31 | |
| 32 | def test_weeks(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…