11 lines
240 B
Python
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'
|
|
|
|
|