8 lines
177 B
Python
8 lines
177 B
Python
import pytest
|
|
from fooder.context import Context
|
|
from fooder.repository import Repository
|
|
|
|
|
|
@pytest.fixture
|
|
def ctx(db_session):
|
|
return Context(repo=Repository(db_session))
|