(original)
| 25 | @pytest.mark.slow |
| 26 | @given(original=variables()) |
| 27 | def test_CFMask_coder_roundtrip(original) -> None: |
| 28 | coder = xr.coding.variables.CFMaskCoder() |
| 29 | roundtripped = coder.decode(coder.encode(original)) |
| 30 | xr.testing.assert_identical(original, roundtripped) |
| 31 | |
| 32 | |
| 33 | @pytest.mark.xfail |