(self)
| 6992 | # Test for appending zero-sized recarrays |
| 6993 | class ZeroSizedTestCase(common.TempFileMixin, common.PyTablesTestCase): |
| 6994 | def setUp(self): |
| 6995 | super().setUp() |
| 6996 | |
| 6997 | # Create a Table |
| 6998 | t = self.h5file.create_table( |
| 6999 | "/", "table", {"c1": tb.Int32Col(), "c2": tb.Float64Col()} |
| 7000 | ) |
| 7001 | # Append a single row |
| 7002 | t.append([(1, 2.2)]) |
| 7003 | |
| 7004 | def test01_canAppend(self): |
| 7005 | """Appending zero length recarray.""" |
nothing calls this directly
no test coverage detected