()
| 30 | |
| 31 | |
| 32 | def test_end_of_week(): |
| 33 | d = Date(2016, 10, 20) |
| 34 | new = d.end_of("week") |
| 35 | assert isinstance(new, Date) |
| 36 | assert_date(new, d.year, d.month, 23) |
| 37 | |
| 38 | |
| 39 | def test_start_of_month_is_fluid(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…