| 131 | def test_ctor_without_default_value(self): |
| 132 | # -- IMPLICIT: default_value = Color.red (first enum-value) |
| 133 | class Example2(HasTraits): |
| 134 | color = UseEnum(Color) |
| 135 | |
| 136 | example = Example2() |
| 137 | self.assertEqual(example.color, Color.red) |
searching dependent graphs…