(self)
| 3142 | eq_(assoc.info, {"some_assoc": "some_value"}) |
| 3143 | |
| 3144 | def test_empty(self): |
| 3145 | assoc = association_proxy("a", "b") |
| 3146 | eq_(assoc.info, {}) |
| 3147 | |
| 3148 | def test_via_cls(self): |
| 3149 | class Foob: |
nothing calls this directly
no test coverage detected