(self)
| 322 | self.assertEqual(config.a, "épsîlön") |
| 323 | |
| 324 | def test_list_append(self): |
| 325 | cl = self.klass(log=log) |
| 326 | argv = ["--C.list_trait", "x", "--C.list_trait", "y"] |
| 327 | config = cl.load_config(argv) |
| 328 | assert config.C.list_trait == ["x", "y"] |
| 329 | c = C(config=config) |
| 330 | assert c.list_trait == ["x", "y"] |
| 331 | |
| 332 | def test_list_single_item(self): |
| 333 | cl = self.klass(log=log) |
nothing calls this directly
no test coverage detected