(self, using="default")
| 2081 | callback_called = False |
| 2082 | |
| 2083 | def enqueue_callback(self, using="default"): |
| 2084 | def hook(): |
| 2085 | self.callback_called = True |
| 2086 | |
| 2087 | transaction.on_commit(hook, using=using) |
| 2088 | |
| 2089 | def test_no_arguments(self): |
| 2090 | with self.captureOnCommitCallbacks() as callbacks: |
no test coverage detected