(dataarray)
| 123 | |
| 124 | |
| 125 | def test_interactive_xarray_dataarray(dataarray): |
| 126 | dai = Interactive(dataarray) |
| 127 | |
| 128 | assert type(dai) is XArrayInteractive |
| 129 | assert (dai._obj == dataarray).all() |
| 130 | assert dai._fn is None |
| 131 | assert dai._transform == dim('air') |
| 132 | assert dai._method is None |
| 133 | |
| 134 | |
| 135 | def test_interactive_xarray_dataarray_no_name(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…