(self)
| 5953 | eq_(uq.name, "uq_user_data") |
| 5954 | |
| 5955 | def test_uq_name(self): |
| 5956 | u1 = self._fixture( |
| 5957 | naming_convention={"uq": "uq_%(table_name)s_%(column_0_name)s"} |
| 5958 | ) |
| 5959 | uq = UniqueConstraint(u1.c.data) |
| 5960 | eq_(uq.name, "uq_user_data") |
| 5961 | |
| 5962 | def test_uq_conv_name(self): |
| 5963 | u1 = self._fixture( |
nothing calls this directly
no test coverage detected