logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 22449fa624a66b1fdea203a1687c817c37ed729f
parent d36d3f420c53c4e2e499d8264a4d21d63a290fc0
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 27 Aug 2014 11:35:43 +0200

Improve test_all_urls output

Diffstat:

Mtest/test_all_urls.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/test_all_urls.py b/test/test_all_urls.py @@ -109,7 +109,9 @@ class TestAllURLsMatching(unittest.TestCase): if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'): self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url)) else: - self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url)) + self.assertFalse( + ie.suitable(url), + '%s should not match URL %r . That URL belongs to %s.' % (type(ie).__name__, url, tc['name'])) def test_keywords(self): self.assertMatch(':ytsubs', ['youtube:subscriptions'])