()
| 357 | |
| 358 | |
| 359 | def test_subtraction(): |
| 360 | d = pendulum.date(2016, 7, 5) |
| 361 | future_dt = date(2016, 7, 6) |
| 362 | future = d.add(days=1) |
| 363 | |
| 364 | assert (future - d).total_seconds() == 86400 |
| 365 | assert (future_dt - d).total_seconds() == 86400 |
nothing calls this directly
no test coverage detected
searching dependent graphs…