| 367 | def test_aliases_multiple(self): |
| 368 | # Test multiple > 2 aliases for the same argument |
| 369 | class TestMultiAliasApp(Application): |
| 370 | foo = Integer(config=True) |
| 371 | aliases = {("f", "bar", "qux"): "TestMultiAliasApp.foo"} |
| 372 | |
| 373 | app = TestMultiAliasApp() |
| 374 | app.parse_command_line(["-f", "3"]) |
no outgoing calls
searching dependent graphs…