1
0
socials-util/test/test_normalize.py
Jon Michael Aanes 7775066990
Some checks failed
Run Python tests (through Pytest) / Test (push) Has been cancelled
Verify Python project can be installed, loaded and have version checked / Test (push) Waiting to run
Python Ruff Code Quality / ruff (push) Successful in 22s
Test normalize
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'