예제 #1
0
def test_next_batch_id():
    with tempdir():
        os.mkdir(Constants.DEFAULT_LDIR)
        db = CsvDatabase()
        batch_id = db.next_batch_id()
        assert batch_id == 1

        batch_id = db.next_batch_id()
        assert batch_id == 2