def setup_module(): """ Setups the tables if not already """ if not os.path.exists("offerbot.db"): DBManager.init_tables()
def test_dbmanager_init_tables(): """ Tests the creation of the sqlite tables """ DBManager.init_tables() assert os.path.exists('offerbot.db')