()
| 50 | |
| 51 | |
| 52 | def test_greater_than_true(): |
| 53 | d1 = pendulum.Date(2000, 1, 1) |
| 54 | d2 = pendulum.Date(1999, 12, 31) |
| 55 | d3 = date(1999, 12, 31) |
| 56 | |
| 57 | assert d1 > d2 |
| 58 | assert d1 > d3 |
| 59 | |
| 60 | |
| 61 | def test_greater_than_false(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…