(self, two_table_fixture)
| 850 | return session, base_class_bind, concrete_sub_bind |
| 851 | |
| 852 | def test_bind_selectable_table(self, two_table_fixture): |
| 853 | session, base_class_bind, concrete_sub_bind = two_table_fixture |
| 854 | |
| 855 | is_(session.get_bind(clause=self.tables.base_table), base_class_bind) |
| 856 | is_( |
| 857 | session.get_bind(clause=self.tables.concrete_sub_table), |
| 858 | concrete_sub_bind, |
| 859 | ) |
| 860 | |
| 861 | def test_bind_selectable_join(self, two_table_fixture): |
| 862 | session, base_class_bind, concrete_sub_bind = two_table_fixture |