()
| 23 | |
| 24 | |
| 25 | def test_start_of_week(): |
| 26 | d = Date(2016, 10, 20) |
| 27 | new = d.start_of("week") |
| 28 | assert isinstance(new, Date) |
| 29 | assert_date(new, d.year, d.month, 17) |
| 30 | |
| 31 | |
| 32 | def test_end_of_week(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…