()
| 17 | |
| 18 | |
| 19 | def test_equal_to_false(): |
| 20 | d1 = pendulum.Date(2000, 1, 1) |
| 21 | d2 = pendulum.Date(2000, 1, 2) |
| 22 | d3 = date(2000, 1, 2) |
| 23 | |
| 24 | assert d1 != d2 |
| 25 | assert d1 != d3 |
| 26 | |
| 27 | |
| 28 | def test_not_equal_to_true(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…