()
| 48 | |
| 49 | |
| 50 | def test_option_name(): |
| 51 | assert Option('-h', None).name == '-h' |
| 52 | assert Option('-h', '--help').name == '--help' |
| 53 | assert Option(None, '--help').name == '--help' |
| 54 | |
| 55 | |
| 56 | def test_commands(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…