(newpath)
| 2698 | pass |
| 2699 | |
| 2700 | def doit(newpath): |
| 2701 | self.h5file.create_array(newpath, "array", [1], createparents=True) |
| 2702 | self.assertIn(tb.path.join_path(newpath, "array"), self.h5file) |
| 2703 | |
| 2704 | def post(newpath): |
| 2705 | self.assertNotIn(tb.path.join_path(newpath, "array"), self.h5file) |
nothing calls this directly
no test coverage detected