(self)
| 104 | self.assertEqual(journal[0], 0) |
| 105 | |
| 106 | def test_non_callable_progress(self): |
| 107 | with self.assertRaises(TypeError) as cm: |
| 108 | with memory_database() as bck: |
| 109 | self.cx.backup(bck, pages=1, progress='bar') |
| 110 | self.assertEqual(str(cm.exception), 'progress argument must be a callable') |
| 111 | |
| 112 | def test_modifying_progress(self): |
| 113 | journal = [] |
nothing calls this directly
no test coverage detected