(self)
| 54 | self.cx.backup(bck) |
| 55 | |
| 56 | def test_keyword_only_args(self): |
| 57 | with self.assertRaises(TypeError): |
| 58 | with memory_database() as bck: |
| 59 | self.cx.backup(bck, 1) |
| 60 | |
| 61 | def test_simple(self): |
| 62 | with memory_database() as bck: |
nothing calls this directly
no test coverage detected