(self)
| 1039 | is_(joincond.direction, ONETOMANY) |
| 1040 | |
| 1041 | def test_determine_direction_o2m(self): |
| 1042 | joincond = self._join_fixture_o2m() |
| 1043 | is_(joincond.direction, ONETOMANY) |
| 1044 | |
| 1045 | def test_determine_direction_o2m_selfref(self): |
| 1046 | joincond = self._join_fixture_o2m_selfref() |
nothing calls this directly
no test coverage detected