PyTest - Fixtures
What will be the output when running this pytest fixture and test?
import pytest
@pytest.fixture
def resource():
print('Setup')
yield
print('Teardown')
def test_example(resource):
print('Test running')