Creating soft links.
(self)
| 424 | self.exth5file = tb.open_file(self.extfname, "r") |
| 425 | |
| 426 | def test00_create(self): |
| 427 | """Creating soft links.""" |
| 428 | |
| 429 | self._checkEqualityGroup( |
| 430 | self.exth5file.root.group1, self.h5file.root.lgroup1() |
| 431 | ) |
| 432 | self._checkEqualityLeaf( |
| 433 | self.exth5file.root.arr1, self.h5file.root.group1.larr1() |
| 434 | ) |
| 435 | self._checkEqualityLeaf( |
| 436 | self.h5file.root.lgroup1().arr2, self.h5file.root.larr2() |
| 437 | ) |
| 438 | |
| 439 | def test01_open(self): |
| 440 | """Opening a file with soft links.""" |
nothing calls this directly
no test coverage detected