PyTest - Fixtures
What will be the output of the following pytest code when running
test_add?
import pytest
@pytest.fixture
def number():
return 5
def test_add(number):
assert number + 3 == 8