1
0
socials-util/test/test_normalize.py
2024-11-21 19:44:12 +01:00

11 lines
240 B
Python

import socials_util
def test_normalize_yt():
url = 'https://www.youtube.com/c/WheelieYellow'
social_link = socials_util.determine_social_from_url(url)
assert social_link.url.geturl() == 'https://youtube.com/@WheelieYellow'