aboutsummaryrefslogtreecommitdiff
path: root/test/test_utils.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-13 15:02:31 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-13 15:02:31 +0100
commite4bdb37ec6c463df236cf7178046b8653c70b78e (patch)
tree4517b09e2b910d8246a5626c10d67aa2479c9221 /test/test_utils.py
parent3e6e4999ca09352fa513c20bfb5ba7b37811819b (diff)
downloadyoutube-dl-e4bdb37ec6c463df236cf7178046b8653c70b78e.tar.xz
[spiegel] Add support for embeds
Diffstat (limited to 'test/test_utils.py')
-rw-r--r--test/test_utils.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index e59547784..0c11d0438 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -16,6 +16,7 @@ import json
import xml.etree.ElementTree
from youtube_dl.utils import (
+ clean_html,
DateRange,
encodeFilename,
find_xpath_attr,
@@ -345,5 +346,9 @@ class TestUtil(unittest.TestCase):
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()