mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
21 lines
502 B
Python
21 lines
502 B
Python
"""Fixtures used for testing the core services."""
|
|
|
|
import pytest
|
|
from unittest.mock import create_autospec
|
|
from sqlalchemy.orm import Session
|
|
from ...services import UserService
|
|
from ...services import TagService
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
def user_svc(session: Session):
|
|
"""This fixture is used to test the UserService class"""
|
|
return UserService(session)
|
|
|
|
@pytest.fixture()
|
|
def tag_svc(session: Session):
|
|
"""This fixture is used to test the TagService class"""
|
|
return TagService(session)
|