I worked through the unit test failures as a result of cursors being positioned after insert operations. Most problems were assuming a scan would start from the beginning of the table. This is partly a symptom of the Python API, where the convenient way to write a loop just calls cursor->next(), without starting the loop with a cursor->first().
The ticket discusses some alternatives.