10 lines
239 B
Python
10 lines
239 B
Python
from __future__ import annotations
|
|
|
|
from _pytest.pytester import Pytester
|
|
|
|
|
|
def test_519(pytester: Pytester) -> None:
|
|
pytester.copy_example("issue_519.py")
|
|
res = pytester.runpytest("issue_519.py")
|
|
res.assert_outcomes(passed=8)
|