()
| 19 | |
| 20 | |
| 21 | def test_equal_to_false(): |
| 22 | d1 = pendulum.datetime(2000, 1, 1, 1, 2, 3) |
| 23 | d2 = pendulum.datetime(2000, 1, 2, 1, 2, 3) |
| 24 | d3 = datetime(2000, 1, 2, 1, 2, 3, tzinfo=pendulum.UTC) |
| 25 | |
| 26 | assert d2 != d1 |
| 27 | assert d3 != d1 |
| 28 | |
| 29 | |
| 30 | def test_equal_with_timezone_true(): |