(self)
| 6 | |
| 7 | class BackupTests(unittest.TestCase): |
| 8 | def setUp(self): |
| 9 | cx = self.cx = sqlite.connect(":memory:") |
| 10 | cx.execute('CREATE TABLE foo (key INTEGER)') |
| 11 | cx.executemany('INSERT INTO foo (key) VALUES (?)', [(3,), (4,)]) |
| 12 | cx.commit() |
| 13 | |
| 14 | def tearDown(self): |
| 15 | self.cx.close() |
nothing calls this directly
no test coverage detected