blob: 1e1bba2425d631e0b340eb28bd3cb11df1e54c2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
"""Conftest for foo_bar directory - should be loaded by foo_bar tests."""
import pytest
@pytest.fixture
def foo_bar_fixture():
"""Fixture from foo_bar/conftest.py that should be available in foo_bar tests."""
return 'foo_bar_fixture_value'
|