()
| 373 | |
| 374 | |
| 375 | def test_matching_paren(): |
| 376 | with raises(DocoptLanguageError): |
| 377 | docopt('Usage: prog [a [b]') |
| 378 | with raises(DocoptLanguageError): |
| 379 | docopt('Usage: prog [a [b] ] c )') |
| 380 | |
| 381 | |
| 382 | def test_allow_double_dash(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…