From 090d48d58160dd953d5b5873c953d92f8e4a43eb Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Sun, 10 Jul 2016 22:39:28 -0600 Subject: [PATCH] Move model tests into a tests module. --- bikeshop_project/registration/tests/__init__.py | 0 .../registration/{tests.py => tests/test_models.py} | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 bikeshop_project/registration/tests/__init__.py rename bikeshop_project/registration/{tests.py => tests/test_models.py} (97%) diff --git a/bikeshop_project/registration/tests/__init__.py b/bikeshop_project/registration/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/bikeshop_project/registration/tests.py b/bikeshop_project/registration/tests/test_models.py similarity index 97% rename from bikeshop_project/registration/tests.py rename to bikeshop_project/registration/tests/test_models.py index 3e7d626..c025a9e 100644 --- a/bikeshop_project/registration/tests.py +++ b/bikeshop_project/registration/tests/test_models.py @@ -1,7 +1,7 @@ from django.test import TestCase -from .models import CustomUser, Member +from ..models import CustomUser, Member class TestCustomUserManager(TestCase):