Opening a file with soft links.
(self)
| 123 | ) |
| 124 | |
| 125 | def test01_open(self): |
| 126 | """Opening a file with soft links.""" |
| 127 | |
| 128 | self._reopen() |
| 129 | self._checkEqualityGroup( |
| 130 | self.h5file.root.group1, self.h5file.root.lgroup1() |
| 131 | ) |
| 132 | self._checkEqualityLeaf( |
| 133 | self.h5file.root.arr1, self.h5file.root.group1.larr1() |
| 134 | ) |
| 135 | self._checkEqualityLeaf( |
| 136 | self.h5file.root.lgroup1().arr2, self.h5file.root.larr2() |
| 137 | ) |
| 138 | |
| 139 | def test02_remove(self): |
| 140 | """Removing a soft link.""" |
nothing calls this directly
no test coverage detected