(self)
| 1808 | eq_(fkc.info, {"foo": "bar"}) |
| 1809 | |
| 1810 | def test_primarykey_constraint_info(self): |
| 1811 | pkc = PrimaryKeyConstraint("a", name="x") |
| 1812 | eq_(pkc.info, {}) |
| 1813 | |
| 1814 | pkc = PrimaryKeyConstraint("a", name="x", info={"foo": "bar"}) |
| 1815 | eq_(pkc.info, {"foo": "bar"}) |
| 1816 | |
| 1817 | def test_unique_constraint_info(self): |
| 1818 | uc = UniqueConstraint("a", name="x") |
nothing calls this directly
no test coverage detected