(self)
| 1267 | assert_identical(old, new) |
| 1268 | |
| 1269 | def test_concat_along_new_dim(self): |
| 1270 | concat_dim = "new_dim" |
| 1271 | ds = create_test_data |
| 1272 | with set_options(use_new_combine_kwarg_defaults=False): |
| 1273 | old = concat([ds(0), ds(1)], dim=concat_dim) |
| 1274 | with set_options(use_new_combine_kwarg_defaults=True): |
| 1275 | new = concat([ds(0), ds(1)], dim=concat_dim) |
| 1276 | |
| 1277 | assert concat_dim in old.dims |
| 1278 | assert concat_dim in new.dims |
| 1279 | |
| 1280 | def test_nested_merge_with_overlapping_values(self): |
| 1281 | ds1 = Dataset({"a": ("x", [1, 2]), "x": [0, 1]}) |
nothing calls this directly
no test coverage detected