(self)
| 2105 | self.assertIs(self.callback_called, True) |
| 2106 | |
| 2107 | def test_different_using(self): |
| 2108 | with self.captureOnCommitCallbacks(using="default") as callbacks: |
| 2109 | self.enqueue_callback(using="other") |
| 2110 | |
| 2111 | self.assertEqual(callbacks, []) |
| 2112 | |
| 2113 | def test_execute(self): |
| 2114 | with self.captureOnCommitCallbacks(execute=True) as callbacks: |
nothing calls this directly
no test coverage detected