(self)
| 2666 | ] |
| 2667 | |
| 2668 | def setUp(self): |
| 2669 | super().setUp() |
| 2670 | |
| 2671 | class Descr(tb.IsDescription): |
| 2672 | when = self.col_typ(pos=1) |
| 2673 | value = tb.Float32Col(pos=2) |
| 2674 | |
| 2675 | self.table = self.h5file.create_table("/", "test", Descr) |
| 2676 | |
| 2677 | self.t = 1321031471.0 # 11/11/11 11:11:11 |
| 2678 | data = [(self.t + i, item) for i, item in enumerate(self.values)] |
| 2679 | self.table.append(data) |
| 2680 | self.h5file.flush() |
| 2681 | |
| 2682 | def test_timecol_issue(self): |
| 2683 | tbl = self.table |
nothing calls this directly
no test coverage detected