(self, join, expected)
| 435 | ], |
| 436 | ) |
| 437 | def test_combine_nested_join(self, join, expected): |
| 438 | objs = [Dataset({"x": [0], "y": [0]}), Dataset({"x": [1], "y": [1]})] |
| 439 | actual = combine_nested(objs, concat_dim="x", join=join) |
| 440 | assert_identical(expected, actual) |
| 441 | |
| 442 | def test_combine_nested_join_exact(self): |
| 443 | objs = [Dataset({"x": [0], "y": [0]}), Dataset({"x": [1], "y": [1]})] |
nothing calls this directly
no test coverage detected