aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'grumpy/testsuite/__init__.py')
-rw-r--r--grumpy/testsuite/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/grumpy/testsuite/__init__.py b/grumpy/testsuite/__init__.py
index 6dc55e3..e9762db 100644
--- a/grumpy/testsuite/__init__.py
+++ b/grumpy/testsuite/__init__.py
@@ -27,7 +27,8 @@ class GrumpyTestCase(unittest.TestCase):
self.db.drop_all()
def suite():
- from . import usermodel
+ from . import pkgmodel, usermodel
suite = unittest.TestSuite()
+ suite.addTest(pkgmodel.suite())
suite.addTest(usermodel.suite())
return suite