[tests] Raise an exception if test definition is invalid (Found in #2460)
authorPhilipp Hagemeister <phihag@phihag.de>
Tue, 25 Feb 2014 23:12:02 +0000 (00:12 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Tue, 25 Feb 2014 23:12:02 +0000 (00:12 +0100)
test/test_download.py

index ff571c48fd7baeed6ba9e0c4ba71d1573e496156..bbbb6b78ab326a292b193891cee926f88d1ab3ad 100644 (file)
@@ -73,9 +73,7 @@ def generator(test_case):
         if 'playlist' not in test_case:
             info_dict = test_case.get('info_dict', {})
             if not test_case.get('file') and not (info_dict.get('id') and info_dict.get('ext')):
-                print_skipping('The output file cannot be know, the "file" '
-                    'key is missing or the info_dict is incomplete')
-                return
+                raise Exception('Test definition incorrect. The output file cannot be known. Are both \'id\' and \'ext\' keys present?')
         if 'skip' in test_case:
             print_skipping(test_case['skip'])
             return