(self)
| 395 | assert coords == {"lat", "lon", "crs", "crs2"} |
| 396 | |
| 397 | def test_0d_int32_encoding(self) -> None: |
| 398 | original = Variable((), np.int32(0), encoding={"dtype": "int64"}) |
| 399 | expected = Variable((), np.int64(0)) |
| 400 | actual = coding.variables.NonStringCoder().encode(original) |
| 401 | assert_identical(expected, actual) |
| 402 | |
| 403 | def test_decode_cf_with_multiple_missing_values(self) -> None: |
| 404 | original = Variable(["t"], [0, 1, 2], {"missing_value": np.array([0, 1])}) |
nothing calls this directly
no test coverage detected