mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 15:49:42 +02:00
19 lines
362 B
Python
19 lines
362 B
Python
|
from pytest import fixture
|
||
|
|
||
|
from tests.utils.recipe_data import get_raw_no_image, get_raw_recipe, get_recipe_test_cases
|
||
|
|
||
|
|
||
|
@fixture(scope="session")
|
||
|
def raw_recipe():
|
||
|
return get_raw_recipe()
|
||
|
|
||
|
|
||
|
@fixture(scope="session")
|
||
|
def raw_recipe_no_image():
|
||
|
return get_raw_no_image()
|
||
|
|
||
|
|
||
|
@fixture(scope="session")
|
||
|
def recipe_store():
|
||
|
return get_recipe_test_cases()
|