(self)
| 312 | ) |
| 313 | |
| 314 | def test_instance_state(self): |
| 315 | User = self.classes.User |
| 316 | u1 = User() |
| 317 | insp = inspect(u1) |
| 318 | is_(insp, instance_state(u1)) |
| 319 | |
| 320 | def test_instance_state_info(self): |
| 321 | User = self.classes.User |
nothing calls this directly
no test coverage detected