()
| 8 | |
| 9 | |
| 10 | def test_equal_to_true(): |
| 11 | d1 = pendulum.Date(2000, 1, 1) |
| 12 | d2 = pendulum.Date(2000, 1, 1) |
| 13 | d3 = date(2000, 1, 1) |
| 14 | |
| 15 | assert d2 == d1 |
| 16 | assert d3 == d1 |
| 17 | |
| 18 | |
| 19 | def test_equal_to_false(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…