Move example app, which was a bad example, to the tests namespace. Its what it was used for anyway. A better example will be provided later

This commit is contained in:
Matt Wright
2012-08-22 12:00:46 -04:00
parent 17416cb535
commit 2471ba0db8
14 changed files with 271 additions and 303 deletions
+2 -1
View File
@@ -560,7 +560,8 @@ class ExpiredLoginTokenTests(SecurityTest):
class MongoEngineSecurityTests(DefaultSecurityTests):
def _create_app(self, auth_config):
return app.create_mongoengine_app(auth_config)
from tests.test_app.mongoengine import create_app
return create_app(auth_config)
class DefaultDatastoreTests(SecurityTest):