def setUp(self): ShoppingCart.init_db(app) db.drop_all() # clean up the last tests db.create_all() # make our sqlalchemy tables
def init_db(): """ Initialies the SQLAlchemy app """ global app ShoppingCart.init_db(app) ShoppingCartItems.init_db(app)