Commit c324326a authored by Vincent Pelletier's avatar Vincent Pelletier

ERP5Type.BTreeData: Comment embedded tests a bit.

parent 0e54a8aa
......@@ -239,12 +239,13 @@ if __name__ == '__main__':
check(data, 7, 5, 1, '5')
check(data, 7, 6, 1, '6')
# Unaligned write, spilling in next existing chunk
data.write('XY', 4)
check(data, 7, 0, 10, '0123XY6', [0, 5])
# Unaligned write, inside existing chunk
data.write('VW', 1)
check(data, 7, 0, 10, '0VW3XY6', [0, 5])
# Empty write inside existing chunk
data.write('', 4)
check(data, 7, 0, 10, '0VW3XY6', [0, 5])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment