diff --git a/tests/conftest.py b/tests/conftest.py index 0d13989..fefe9a4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,21 +1,15 @@ -import pytest import os from pathlib import Path - - -@pytest.fixture -def temp_dir(tmp_path): - """Provide a temporary directory.""" - return tmp_path +import pytest @pytest.fixture def examples_dir(): - """Provide the path to the examples directory.""" + """Return the path to the examples directory.""" return Path(__file__).parent.parent / "examples" @pytest.fixture def sample_spec_path(examples_dir): - """Provide the path to the sample petstore spec.""" - return str(examples_dir / "petstore.yaml") \ No newline at end of file + """Return the path to a sample OpenAPI spec for testing.""" + return examples_dir / "sample_api.yaml"