(self, data, dim_names)
| 256 | |
| 257 | @given(st.data(), dimension_names(min_dims=1)) |
| 258 | def test_iterable(self, data, dim_names): |
| 259 | subset_of_dim_names = data.draw(unique_subset_of(dim_names)) |
| 260 | |
| 261 | for dim in subset_of_dim_names: |
| 262 | assert dim in dim_names |
| 263 | |
| 264 | |
| 265 | class TestReduction: |
nothing calls this directly
no test coverage detected