Opening a file with soft links.
(self)
| 437 | ) |
| 438 | |
| 439 | def test01_open(self): |
| 440 | """Opening a file with soft links.""" |
| 441 | |
| 442 | self._reopen() |
| 443 | self._checkEqualityGroup( |
| 444 | self.exth5file.root.group1, self.h5file.root.lgroup1() |
| 445 | ) |
| 446 | self._checkEqualityLeaf( |
| 447 | self.exth5file.root.arr1, self.h5file.root.group1.larr1() |
| 448 | ) |
| 449 | self._checkEqualityLeaf( |
| 450 | self.h5file.root.lgroup1().arr2, self.h5file.root.larr2() |
| 451 | ) |
| 452 | |
| 453 | def test02_remove(self): |
| 454 | """Removing an external link.""" |
nothing calls this directly
no test coverage detected