(self)
| 499 | |
| 500 | class TestConfigContainers(TestCase): |
| 501 | def test_extend(self): |
| 502 | c = Config() |
| 503 | c.Containers.lis.extend(list(range(5))) |
| 504 | obj = Containers(config=c) |
| 505 | self.assertEqual(obj.lis, list(range(-1, 5))) |
| 506 | |
| 507 | def test_insert(self): |
| 508 | c = Config() |
nothing calls this directly
no test coverage detected