diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-10-10 20:55:46 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-10-10 21:37:43 +0600 |
commit | b5d48cb1ef741ef999d038a3bc80943b1ae37a50 (patch) | |
tree | 35a5cf05dfb4aa5a45f0cd1caedb144d48b465bb /youtube_dl/extractor/bbc.py | |
parent | de66571371e2a9705ecd3aed903880c4846d04ff (diff) |
[bbc] Add test for atricle with multiple videos embedded with playlist.sxml
Diffstat (limited to 'youtube_dl/extractor/bbc.py')
-rw-r--r-- | youtube_dl/extractor/bbc.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index 930637cd7..ffe2afa96 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -609,6 +609,14 @@ class BBCIE(BBCCoUkIE): 'skip_download': True, } }, { + # article with multiple videos embedded with playlist.sxml + 'url': 'http://www.bbc.com/sport/0/football/34475836', + 'info_dict': { + 'id': '34475836', + 'title': 'What Liverpool can expect from Klopp', + }, + 'playlist_count': 3, + }, { # single video with playlist URL from weather section 'url': 'http://www.bbc.com/weather/features/33601775', 'only_matching': True, |