()
| 9 | |
| 10 | |
| 11 | def test_start_of_day(): |
| 12 | d = Date.today() |
| 13 | new = d.start_of("day") |
| 14 | assert isinstance(new, Date) |
| 15 | assert_date(new, d.year, d.month, d.day) |
| 16 | |
| 17 | |
| 18 | def test_end_of_day(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…