Files
The_DisExcel_project/tests/conftest.py
T
2026-08-04 17:11:33 +03:00

14 lines
277 B
Python

import pytest
from src.service.auth.jwt import HashService, JwtService
@pytest.fixture
def jwt_service()->JwtService:
jwt_service=JwtService()
return jwt_service
@pytest.fixture
def hash_service()->HashService:
hash_service=HashService()
return hash_service