()
| 16 | |
| 17 | |
| 18 | def test_end_of_day(): |
| 19 | d = Date.today() |
| 20 | new = d.end_of("day") |
| 21 | assert isinstance(new, Date) |
| 22 | assert_date(new, d.year, d.month, d.day) |
| 23 | |
| 24 | |
| 25 | def test_start_of_week(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…