Verify autouse fixture runs automatically before each test
Preconditions (2)
Step 1: Create a fixture with autouse=True that prints 'Setup running' before each test
Step 2: Write two test functions that each assert True is True
Step 3: Run the tests using pytest
Step 4: Observe the output to confirm the fixture runs before each test automatically
✅ Expected Result: The fixture's print statement 'Setup running' appears before each test output without explicitly calling the fixture