PyTest - Fixtures
Given this pytest code, what will be the output when running
test_example?
import pytest
@pytest.fixture
def sample_data():
return [1, 2, 3]
def test_example(sample_data):
assert sum(sample_data) == 6
print('Test passed')