14 lines
277 B
Python
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 |