Test that the instance klass is properly assigned.
(self)
| 2501 | obj = ForwardDeclaredInstanceListTrait() |
| 2502 | |
| 2503 | def test_klass(self): |
| 2504 | """Test that the instance klass is properly assigned.""" |
| 2505 | self.assertIs(self.obj.traits()["value"]._trait.klass, ForwardDeclaredBar) |
| 2506 | |
| 2507 | _default_value: t.List[t.Any] = [] |
| 2508 | _good_values = [ |