diff options
Diffstat (limited to 'alphabetlearning/payments/tests/conftest.py')
-rw-r--r-- | alphabetlearning/payments/tests/conftest.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/alphabetlearning/payments/tests/conftest.py b/alphabetlearning/payments/tests/conftest.py new file mode 100644 index 0000000..7919170 --- /dev/null +++ b/alphabetlearning/payments/tests/conftest.py @@ -0,0 +1,6 @@ +import pytest + + +@pytest.fixture +def user_data(): + return {"email": "testuser@example.com", "password": "testpassword123"} |