Commit b4fe3075 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 1f651171
...@@ -23,15 +23,20 @@ ...@@ -23,15 +23,20 @@
from ZODB.DB import DB from ZODB.DB import DB
from BTrees.LOBTree import LOBucket, LOBTree from BTrees.LOBTree import LOBucket, LOBTree
from ZODB.utils import u64 from ZODB.utils import u64
import os, transaction import os, os.path, transaction
from golang.gcompat import qq from golang.gcompat import qq
def rm_f(path):
if os.path.exists(path):
os.remove(path)
def main(): def main():
import zodbtools.test.gen_testdata # to make time predictable (XXX) import zodbtools.test.gen_testdata # to make time predictable (XXX)
outfs = "testdata/1.fs" outfs = "testdata/1.fs"
os.remove(outfs) rm_f(outfs)
rm_f(outfs + ".index")
db = DB(outfs) db = DB(outfs)
conn = db.open() conn = db.open()
root = conn.root() root = conn.root()
......
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