Skip to content

Instantly share code, notes, and snippets.

@muditlambda
Created May 18, 2020 15:24
Show Gist options
  • Save muditlambda/658f5701d54dd2e9409a276a69eb9f5d to your computer and use it in GitHub Desktop.
Save muditlambda/658f5701d54dd2e9409a276a69eb9f5d to your computer and use it in GitHub Desktop.
@pytest.fixture
def fixture_func():
return "fixture test"
def test_fixture(fixture_func):
assert fixture_func == "fixture test"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment