(self, request, namespace)
| 201 | class TestDataArrayMethods(_BaseTest): |
| 202 | @pytest.fixture(autouse=True) |
| 203 | def setUp(self, request, namespace): |
| 204 | self.setup_for_test(request, namespace) |
| 205 | self.x = self.get_test_dataarray() |
| 206 | |
| 207 | def test_loc(self): |
| 208 | result = self.x.loc[{"x": slice(1, 3)}] |
nothing calls this directly
no test coverage detected