()
| 435 | |
| 436 | |
| 437 | def test_issue_40(): |
| 438 | with raises(SystemExit): # i.e. shows help |
| 439 | docopt('usage: prog --help-commands | --help', '--help') |
| 440 | assert docopt('usage: prog --aabb | --aa', '--aa') == {'--aabb': False, |
| 441 | '--aa': True} |
| 442 | |
| 443 | |
| 444 | def test_issue34_unicode_strings(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…