()
| 100 | tmpdir = tempfile.mkdtemp() |
| 101 | |
| 102 | def builder(): |
| 103 | ws = workspace.C.Workspace() |
| 104 | session = LocalSession(ws) |
| 105 | checkpoint = CheckpointManager(tmpdir, 'temp_node', 'minidb') |
| 106 | return session, checkpoint |
| 107 | |
| 108 | self.run_with(builder) |
| 109 | finally: |
nothing calls this directly
no test coverage detected