diff --git a/example/blog/tests/__init__.py b/example/blog/tests/__init__.py index dee6a40..8a7bd1e 100644 --- a/example/blog/tests/__init__.py +++ b/example/blog/tests/__init__.py @@ -1,3 +1,7 @@ +# make sure that everything is setup for tests. Django 1.6 doesn't necessarily +# load the urls.py before the tests are run. +import example.urls + from test_apiviews import * from test_builtin_api_resources import * from test_permissions import *