Executed once before any test in the class
(cls)
| 107 | class TestUUIDFormats(TestCase): |
| 108 | @classmethod |
| 109 | def setUpClass(cls): |
| 110 | """Executed once before any test in the class""" |
| 111 | cls.t = Task() |
| 112 | cls.t.config("report.xxx.columns", "uuid") |
| 113 | cls.t.config("verbose", "nothing") |
| 114 | |
| 115 | cls.t("add zero") |
| 116 | code, out, err = cls.t("_get 1.uuid") |
| 117 | cls.uuid = out.strip() |
| 118 | |
| 119 | def test_uuid_long(self): |
| 120 | """Verify formatting of 'uuid.long' column""" |