def test_title(resp): assert_contains(resp, '<title>ICSMP - Home</title>')
def test_title_link(resp): assert_contains(resp, f'href="{reverse("base:home")}">')
def test_nome_aula(resp, aula): assert_contains(resp, aula.nome)
def test_content_video(resp, aula): assert_contains(resp, f'<iframe src="https://www.youtube.com/embed/{aula.v_id}')
def test_lista_video(resp, videos): for video in videos: assert_contains(resp, video.titulo)
def test_link_video(resp, videos): for v in videos: video_link = reverse("aulas:video", args=(v.slug, )) assert_contains(resp, video_link)
def test_lista_aulas(resp, aulas): for aula in aulas: assert_contains(resp, aula.nome)
def test_link_aulas(resp, aulas): for aula in aulas: assert_contains(resp, aula.get_absolute_url())
def test_descricao_modulo(resp, modulo): assert_contains(resp, modulo.descricao)
def test_titulo_modulo(resp, modulo): assert_contains(resp, modulo.nome)
def test_titulo_link_modulo(resp, modulos): for modulo in modulos: assert_contains(resp, modulo.get_absolute_url())
def test_titulo_modulo(resp, modulos): for modulo in modulos: assert_contains(resp, modulo.nome)
def test_title_video(resp, video): assert_contains(resp, video.titulo)