1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 06:35:42 +07:00

[spiegel] Add support for embeds

This commit is contained in:
Philipp Hagemeister
2014-11-13 15:02:31 +01:00
parent 3e6e4999ca
commit e4bdb37ec6
2 changed files with 44 additions and 14 deletions

View File

@@ -16,6 +16,7 @@
import xml.etree.ElementTree
from youtube_dl.utils import (
clean_html,
DateRange,
encodeFilename,
find_xpath_attr,
@@ -345,5 +346,9 @@ def test_js_to_json_edgecases(self):
on = js_to_json('{"abc": true}')
self.assertEqual(json.loads(on), {'abc': True})
def test_clean_html(self):
self.assertEqual(clean_html('a:\nb'), 'a: b')
self.assertEqual(clean_html('a:\n "b"'), 'a: "b"')
if __name__ == '__main__':
unittest.main()