PyTest - Basics and Setup
Find the problem in this pytest fixture usage:
import pytest
@pytest.fixture
def sample_data():
return [1, 2, 3]
def test_data():
assert sample_data == [1, 2, 3]