()
| 442 | |
| 443 | |
| 444 | def test_issue34_unicode_strings(): |
| 445 | try: |
| 446 | assert docopt(eval("u'usage: prog [-o <a>]'"), '') == \ |
| 447 | {'-o': False, '<a>': None} |
| 448 | except SyntaxError: |
| 449 | pass # Python 3 |
| 450 | |
| 451 | |
| 452 | def test_count_multiple_flags(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…