mirror of
https://github.com/kennethreitz/responder.git
synced 2026-06-05 23:00:17 +00:00
13 lines
186 B
Python
13 lines
186 B
Python
from pathlib import Path
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def data_dir(current_dir):
|
|
yield current_dir / "data"
|
|
|
|
|
|
@pytest.fixture()
|
|
def current_dir():
|
|
yield Path(__file__).parent
|