| 481 | |
| 482 | |
| 483 | class Containers(Configurable): |
| 484 | lis = List().tag(config=True) |
| 485 | |
| 486 | def _lis_default(self): |
| 487 | return [-1] |
| 488 | |
| 489 | s = Set().tag(config=True) |
| 490 | |
| 491 | def _s_default(self): |
| 492 | return {"a"} |
| 493 | |
| 494 | d = Dict().tag(config=True) |
| 495 | |
| 496 | def _d_default(self): |
| 497 | return {"a": "b"} |
| 498 | |
| 499 | |
| 500 | class TestConfigContainers(TestCase): |
searching dependent graphs…