()
| 59 | |
| 60 | |
| 61 | def test_greater_than_false(): |
| 62 | d1 = pendulum.Date(2000, 1, 1) |
| 63 | d2 = pendulum.Date(2000, 1, 2) |
| 64 | d3 = date(2000, 1, 2) |
| 65 | |
| 66 | assert not d1 > d2 |
| 67 | assert not d1 > d3 |
| 68 | |
| 69 | |
| 70 | def test_greater_than_or_equal_true(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…