diff --git a/tests/test_parsers.py b/tests/test_parsers.py index 960d336..413a9af 100644 --- a/tests/test_parsers.py +++ b/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()