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