(self)
| 445 | combine_nested(objs, concat_dim="x", join="exact") |
| 446 | |
| 447 | def test_empty_input(self): |
| 448 | assert_identical(Dataset(), combine_nested([], concat_dim="x")) |
| 449 | |
| 450 | # Fails because of concat's weird treatment of dimension coords, see #2975 |
| 451 | @pytest.mark.xfail |
nothing calls this directly
no test coverage detected