()
| 89 | |
| 90 | |
| 91 | def test_end_of_month(): |
| 92 | d = Date(2000, 1, 1).end_of("month") |
| 93 | new = d.end_of("month") |
| 94 | assert_date(new, 2000, 1, 31) |
| 95 | |
| 96 | |
| 97 | def test_end_of_month_from_last_day(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…