(self, shape=())
| 231 | enumType = "uint16" |
| 232 | |
| 233 | def _description(self, shape=()): |
| 234 | class TestDescription(tb.IsDescription): |
| 235 | rid = tb.IntCol(pos=0) |
| 236 | rcolor = tb.EnumCol( |
| 237 | self.enum, |
| 238 | self.defaultName, |
| 239 | base=self.enumType, |
| 240 | shape=shape, |
| 241 | pos=1, |
| 242 | ) |
| 243 | |
| 244 | return TestDescription |
| 245 | |
| 246 | def test00a_reopen(self): |
| 247 | """Reopening a file with tables using enumerated data.""" |
no outgoing calls
no test coverage detected