Using soft links with relative paths (./ version)
(self)
| 235 | ) |
| 236 | |
| 237 | def test06b_relative_path(self): |
| 238 | """Using soft links with relative paths (./ version)""" |
| 239 | |
| 240 | # Create new group |
| 241 | self.h5file.create_group("/group1", "group3") |
| 242 | # ... and relative link |
| 243 | lgroup3 = self.h5file.create_soft_link( |
| 244 | "/group1", "lgroup3", "./group3" |
| 245 | ) |
| 246 | if common.verbose: |
| 247 | print("Relative path link:", lgroup3) |
| 248 | self.assertIn("/group1/lgroup3", self.h5file) |
| 249 | self._checkEqualityGroup( |
| 250 | self.h5file.root.group1.group3, self.h5file.root.group1.lgroup3() |
| 251 | ) |
| 252 | |
| 253 | def test07_walkNodes(self): |
| 254 | """Checking `walk_nodes` with `classname` option.""" |
nothing calls this directly
no test coverage detected