def test_videogame_url(topchart_row_videogame):
    url = row_utils.get_url(topchart_row_videogame)
    if not url.startswith("https"):
        raise AssertionError()
def test_music_url(topchart_row_music):
    url = row_utils.get_url(topchart_row_music)
    if not url.startswith("https"):
        raise AssertionError()
def test_series_url(topchart_row_series):
    url = row_utils.get_url(topchart_row_series)
    if not url.startswith("https"):
        raise AssertionError()