| 68 | |
| 69 | |
| 70 | class TestConfig3(TestConfigurable): |
| 71 | # TestConfig3 is a configuration option that is itself configurable. |
| 72 | @classmethod |
| 73 | def configurable_base(cls): |
| 74 | return TestConfig3 |
| 75 | |
| 76 | @classmethod |
| 77 | def configurable_default(cls): |
| 78 | return TestConfig3A |
| 79 | |
| 80 | |
| 81 | class TestConfig3A(TestConfig3): |
no outgoing calls