()
| 35 | |
| 36 | |
| 37 | def test_not_equal_to_false(): |
| 38 | d1 = pendulum.Date(2000, 1, 1) |
| 39 | d2 = pendulum.Date(2000, 1, 1) |
| 40 | d3 = date(2000, 1, 1) |
| 41 | |
| 42 | assert d2 == d1 |
| 43 | assert d3 == d1 |
| 44 | |
| 45 | |
| 46 | def test_not_equal_to_none(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…