Browse Source

Extend the 'test_parse_to_audio_requirement_bug' test case

doc-issue-template
MrS0m30n3 7 years ago
parent
commit
0085e36491
1 changed files with 6 additions and 0 deletions
  1. 6
      tests/test_parsers.py

6
tests/test_parsers.py

@ -100,6 +100,12 @@ class TestParse(unittest.TestCase):
self.assertItemsEqual(options_parser.parse(options_dict), expected_cmd_list)
# Setting 'to_audio' to True should return the same results
# since the '-x' flag is already set on audio extraction
options_dict["to_audio"] = True
self.assertItemsEqual(options_parser.parse(options_dict), expected_cmd_list)
def main():
unittest.main()

Loading…
Cancel
Save