Polish up tests

This commit is contained in:
Matt Wright
2012-08-24 00:47:41 -04:00
parent 7ddc132af5
commit 4e41f4ec5e
3 changed files with 17 additions and 0 deletions
+2
View File
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-
from unittest import TestCase
from tests.test_app.sqlalchemy import create_app
+7
View File
@@ -1,3 +1,10 @@
# -*- coding: utf-8 -*-
import sys
import os
sys.path.pop(0)
sys.path.insert(0, os.getcwd())
from flask.ext.mongoengine import MongoEngine
from flask.ext.security import Security, UserMixin, RoleMixin, \
+8
View File
@@ -1,3 +1,11 @@
# -*- coding: utf-8 -*-
import sys
import os
sys.path.pop(0)
sys.path.insert(0, os.getcwd())
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.security import Security, UserMixin, RoleMixin, \