()
| 23 | |
| 24 | |
| 25 | def test_cmd_filenames_some_filenames(): |
| 26 | cmd, filenames = _cmd_filenames(('hello', 'world', '--', 'f1', 'f2')) |
| 27 | assert cmd == ('hello', 'world') |
| 28 | assert filenames == ('f1', 'f2') |
| 29 | |
| 30 | |
| 31 | def test_cmd_filenames_multiple_dashdash(): |
nothing calls this directly
no test coverage detected