コード例 #1
0
ファイル: UserManager_tests.py プロジェクト: lowky12/OfferBot
def setup_module():
    """
    Setups the tables if not already
    """
    if not os.path.exists("offerbot.db"):
        DBManager.init_tables()
コード例 #2
0
ファイル: DBManager_tests.py プロジェクト: lowky12/OfferBot
def test_dbmanager_init_tables():
    """
    Tests the creation of the sqlite tables
    """
    DBManager.init_tables()
    assert os.path.exists('offerbot.db')