tests for #6808
(
self, cols_expr, select_from, exp_final_froms, exp_cc_froms
)
| 845 | ), |
| 846 | ) |
| 847 | def test_froms_accessors( |
| 848 | self, cols_expr, select_from, exp_final_froms, exp_cc_froms |
| 849 | ): |
| 850 | """tests for #6808""" |
| 851 | s1 = select(*cols_expr).select_from(*select_from) |
| 852 | |
| 853 | for ff, efp in zip_longest(s1.get_final_froms(), exp_final_froms): |
| 854 | assert ff.compare(efp) |
| 855 | |
| 856 | eq_(s1.columns_clause_froms, exp_cc_froms) |
| 857 | |
| 858 | def test_scalar_subquery_from_subq_same_source(self): |
| 859 | s1 = select(table1.c.col1) |
nothing calls this directly
no test coverage detected