import pytest @pytest.fixture() def postcode(): return '010' def test_postcode(postcode): ... @pytest.fixture(scope='function') def func_scope(): pass ...
確定! 回上一頁