Add tests for Peewee support

This commit is contained in:
Matt Wright
2013-04-04 18:09:55 -04:00
parent 4eda3e756f
commit 38874433c7
3 changed files with 11 additions and 14 deletions
+4 -4
View File
@@ -231,11 +231,11 @@ class MongoEngineSecurityTests(DefaultSecurityTests):
return create_app(auth_config, **kwargs)
# class PeeweeSecurityTests(DefaultSecurityTests):
class PeeweeSecurityTests(DefaultSecurityTests):
# def _create_app(self, auth_config, **kwargs):
# from tests.test_app.peewee_app import create_app
# return create_app(auth_config, **kwargs)
def _create_app(self, auth_config, **kwargs):
from tests.test_app.peewee_app import create_app
return create_app(auth_config, **kwargs)
class DefaultDatastoreTests(SecurityTest):