MCPcopy Index your code
hub / github.com/pydata/xarray / setUp

Method setUp

xarray/tests/test_duck_array_ops.py:100–114  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

98class TestOps:
99 @pytest.fixture(autouse=True)
100 def setUp(self):
101 self.x = array(
102 [
103 [
104 [nan, nan, 2.0, nan],
105 [nan, 5.0, 6.0, nan],
106 [8.0, 9.0, 10.0, nan],
107 ],
108 [
109 [nan, 13.0, 14.0, 15.0],
110 [nan, 17.0, 18.0, nan],
111 [nan, 21.0, nan, nan],
112 ],
113 ]
114 )
115
116 def test_first(self):
117 expected_results = [

Callers

nothing calls this directly

Calls 1

arrayFunction · 0.85

Tested by

no test coverage detected