()
| 26 | |
| 27 | |
| 28 | def test_not_equal_to_true(): |
| 29 | d1 = pendulum.Date(2000, 1, 1) |
| 30 | d2 = pendulum.Date(2000, 1, 2) |
| 31 | d3 = date(2000, 1, 2) |
| 32 | |
| 33 | assert d1 != d2 |
| 34 | assert d1 != d3 |
| 35 | |
| 36 | |
| 37 | def test_not_equal_to_false(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…