summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-21 11:56:49 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-21 11:56:49 +0200
commit266c71f97190d5516d72bb9e5fbe0e8946bbb465 (patch)
tree245cf25a745c9d20fdf98141071c47e46298fcbb
parente8ee972c6ea211a51275c8eb8bfc81b9ae3a9844 (diff)
downloadyoutube-dl-266c71f97190d5516d72bb9e5fbe0e8946bbb465.tar.gz
youtube-dl-266c71f97190d5516d72bb9e5fbe0e8946bbb465.tar.xz
youtube-dl-266c71f97190d5516d72bb9e5fbe0e8946bbb465.zip
Deprecate test_playlists
-rw-r--r--test/test_playlists.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py
index 4f188345b..6448fea38 100644
--- a/test/test_playlists.py
+++ b/test/test_playlists.py
@@ -1,6 +1,17 @@
 #!/usr/bin/env python
 # encoding: utf-8
 
+## DEPRECATED FILE!
+# Add new tests to the extractors themselves, like this:
+# _TEST = {
+#    'url': 'http://example.com/playlist/42',
+#    'playlist_mincount': 99,
+#    'info_dict': {
+#        'id': '42',
+#        'title': 'Playlist number forty-two',
+#    }
+# }
+
 from __future__ import unicode_literals
 
 # Allow direct execution