def test_access_latest_row(): nt = NTuple('A', 'B') nt.fill('A', 5) rw = nt.row(0) assert rw.A == 5 nt.fill('A', 7) rw = nt.row(0) assert rw.A == 7 nt.write() nt.fill('A', 22) rw = nt.row(1) assert rw.A == 22
def test_access_row(): nt = NTuple('A', 'B') nt.fill('A', 5) rw = nt.row(0) assert rw.A == 5 nt.fill('B', 6) assert rw.A == 5 and rw.B == 6