()
| 25 | |
| 26 | @pytest.mark.skipif(PYPY, reason="Time travelling not available on PyPy") |
| 27 | def test_travel() -> None: |
| 28 | now = pendulum.now() |
| 29 | |
| 30 | pendulum.travel(minutes=5) |
| 31 | |
| 32 | assert pendulum.now().diff_for_humans(now) == "5 minutes after" |
| 33 | |
| 34 | |
| 35 | @pytest.mark.skipif(PYPY, reason="Time travelling not available on PyPy") |
nothing calls this directly
no test coverage detected
searching dependent graphs…