(self)
| 330 | assert c.list_trait == ["x", "y"] |
| 331 | |
| 332 | def test_list_single_item(self): |
| 333 | cl = self.klass(log=log) |
| 334 | argv = ["--C.list_trait", "x"] |
| 335 | config = cl.load_config(argv) |
| 336 | c = C(config=config) |
| 337 | assert c.list_trait == ["x"] |
| 338 | |
| 339 | def test_dict(self): |
| 340 | cl = self.klass(log=log) |
nothing calls this directly
no test coverage detected