PyTest - Fixtures
Given the code below, what will be the output when running
pytest?
import pytest
@pytest.fixture(autouse=True)
def setup():
print('Setup runs')
def test_one():
print('Test one running')
def test_two():
print('Test two running')