Files
The_Great_Excel_Project/tests/conftest.py
2026-07-30 15:54:43 +03:00

14 lines
241 B
Python

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