(self, request, namespace)
| 139 | class TestTopLevelMethods(_BaseTest): |
| 140 | @pytest.fixture(autouse=True) |
| 141 | def setUp(self, request, namespace): |
| 142 | self.setup_for_test(request, namespace) |
| 143 | self.x1 = self.get_test_dataarray() |
| 144 | self.x2 = self.get_test_dataarray().assign_coords(x=np.arange(2, 7)) |
| 145 | |
| 146 | def test_apply_ufunc(self): |
| 147 | func = lambda x: x + 1 |
nothing calls this directly
no test coverage detected