1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-07-18 19:28:31 +00:00

add tests for album that requires smuggling

This commit is contained in:
garret1317 2025-07-14 14:48:43 +01:00
parent e0c545b145
commit ace97a88fa

View File

@ -351,6 +351,15 @@ class BandcampAlbumIE(BandcampIE): # XXX: Do not subclass from concrete IE
'description': 'md5:b3cf845ee41b2b1141dc7bde9237255f',
},
'playlist_count': 2,
}, {
# tracks need track_info smuggled because they don't have a usable one on the pages
'url': 'https://wetleg.bandcamp.com/album/wet-leg',
'info_dict': {
'id': 'wet-leg',
'title': 'Wet Leg',
'uploader_id': 'wetleg',
},
'playlist_count': 12,
}]
@classmethod