This commit is contained in:
2026-08-04 17:11:33 +03:00
parent 8fa72daa6b
commit 4e14972cf6
11 changed files with 106 additions and 70 deletions
+5 -5
View File
@@ -1,14 +1,14 @@
import pytest
from src.service.auth.jwt import Hashes, Jwt
from src.service.auth.jwt import HashService, JwtService
@pytest.fixture
def jwt_service()->Jwt:
jwt_service=Jwt()
def jwt_service()->JwtService:
jwt_service=JwtService()
return jwt_service
@pytest.fixture
def hash_service()->Hashes:
hash_service=Hashes()
def hash_service()->HashService:
hash_service=HashService()
return hash_service