(self, mapper, connection, instance)
| 2209 | |
| 2210 | class Events: |
| 2211 | def before_insert(self, mapper, connection, instance): |
| 2212 | self.current_instance = instance |
| 2213 | names.append(instance.name) |
| 2214 | |
| 2215 | def after_insert(self, mapper, connection, instance): |
| 2216 | assert instance is self.current_instance |
no test coverage detected