2020-12-15 19:02:32 +08:00
|
|
|
from _pytest.pytester import Pytester
|
|
|
|
|
|
|
|
|
2021-03-07 21:57:19 +08:00
|
|
|
def test_519(pytester: Pytester) -> None:
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.copy_example("issue_519.py")
|
2021-03-07 21:57:19 +08:00
|
|
|
res = pytester.runpytest("issue_519.py")
|
|
|
|
res.assert_outcomes(passed=8)
|