Removing a visible group with hidden children.
(self)
| 1169 | self.assertFalse(is_visible_node("/_p_g/a")) |
| 1170 | |
| 1171 | def test08_remove(self): |
| 1172 | """Removing a visible group with hidden children.""" |
| 1173 | |
| 1174 | self.assertIn("/g/_p_a", self.h5file) |
| 1175 | self.h5file.root.g._f_remove(recursive=True) |
| 1176 | self.assertNotIn("/g/_p_a", self.h5file) |
| 1177 | |
| 1178 | |
| 1179 | class CreateParentsTestCase(common.TempFileMixin, common.PyTablesTestCase): |