(self)
| 26 | self.cx.backup() |
| 27 | |
| 28 | def test_bad_target_filename(self): |
| 29 | with self.assertRaises(TypeError): |
| 30 | self.cx.backup('some_file_name.db') |
| 31 | |
| 32 | def test_bad_target_same_connection(self): |
| 33 | with self.assertRaises(ValueError): |
nothing calls this directly
no test coverage detected