(fn)
| 4132 | Base.registry.dispose() |
| 4133 | |
| 4134 | def _combinations(fn): |
| 4135 | return testing.combinations( |
| 4136 | (True,), (False,), argnames="include_property" |
| 4137 | )( |
| 4138 | testing.combinations( |
| 4139 | ("correlate",), |
| 4140 | ("correlate_except",), |
| 4141 | (None,), |
| 4142 | argnames="correlate_style", |
| 4143 | )( |
| 4144 | testing.combinations( |
| 4145 | (True,), (False), argnames="include_from" |
| 4146 | )(fn) |
| 4147 | ) |
| 4148 | ) |
| 4149 | |
| 4150 | @_combinations |
| 4151 | def test_correlate_to_cte_legacy( |
nothing calls this directly
no test coverage detected