mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-05 16:23:40 +00:00
9 lines
181 B
Python
9 lines
181 B
Python
import json
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def threads_api_response():
|
|
with open("tests/mock_data/threads_api_response.json") as json_file:
|
|
return json.load(json_file)
|