mirror of
https://github.com/rjNemo/pass-gen
synced 2026-06-06 02:26:42 +00:00
7 lines
115 B
Python
7 lines
115 B
Python
import pytest
|
|
from faker import Faker
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def faker() -> Faker:
|
|
return Faker()
|