| 43 | |
| 44 | |
| 45 | class TS(optmanager.OptManager): |
| 46 | def __init__(self): |
| 47 | super().__init__() |
| 48 | self.add_option("scripts", Sequence[str], [], "help") |
| 49 | self.add_option("not_scripts", Sequence[str], [], "help") |
| 50 | |
| 51 | |
| 52 | def test_defaults(): |
no outgoing calls