def test_sample(sample_fixture):
assert sample_fixture == 42
def test_another(another_fixture):
assert another_fixture == "hello world"
def test_both(sample_fixture, another_fixture, generator_fixture):
assert sample_fixture == 42
assert another_fixture == "hello world"