aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_download.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-02-26 00:12:02 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-02-26 00:12:02 +0100
commit2437fbca64b945f9782677981e5c64e3d620dcb5 (patch)
tree94c05042256fc7421f18e6b74f3db9b5981580f5 /test/test_download.py
parent7d75d06b78a7c9f62416eac37e049d4ebc3ef38c (diff)
downloadyoutube-dl-2437fbca64b945f9782677981e5c64e3d620dcb5.zip
youtube-dl-2437fbca64b945f9782677981e5c64e3d620dcb5.tar.gz
youtube-dl-2437fbca64b945f9782677981e5c64e3d620dcb5.tar.bz2
[tests] Raise an exception if test definition is invalid (Found in #2460)
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_download.py b/test/test_download.py
index ff571c4..bbbb6b7 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -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