(self)
| 3138 | |
| 3139 | class InfoTest(fixtures.TestBase): |
| 3140 | def test_constructor(self): |
| 3141 | assoc = association_proxy("a", "b", info={"some_assoc": "some_value"}) |
| 3142 | eq_(assoc.info, {"some_assoc": "some_value"}) |
| 3143 | |
| 3144 | def test_empty(self): |
| 3145 | assoc = association_proxy("a", "b") |
nothing calls this directly
no test coverage detected