Example #1
0
def test_link_indisponivel(resp_home_logado):
    assert_not_contains(resp_home_logado, reverse('login'))
Example #2
0
def test_link_de_login_indisponível(resp_home_com_usuario_logado):
    assert_not_contains(resp_home_com_usuario_logado, reverse('login'))
Example #3
0
def test_botao_entrar_indisponivel(resp_home_logado):
    assert_not_contains(resp_home_logado, 'Entrar')
Example #4
0
def test_without_login_url(resp_with_logged_user):
    return assert_not_contains(resp_with_logged_user, reverse('login'))
Example #5
0
def test_botão_entrar_indisponível(resp_home_com_usuario_logado):
    assert_not_contains(resp_home_com_usuario_logado, 'Entrar')
Example #6
0
def test_btn_login_in_home_unavailable(resp_home_with_user_logged):
    assert_not_contains(resp_home_with_user_logged, 'Entrar')
Example #7
0
def test_without_login_button(resp_with_logged_user):
    return assert_not_contains(resp_with_logged_user, 'Entrar')
Example #8
0
def test_butao_entrar_indisponivel(resp_home_usuario_logado):
    assert_not_contains(resp_home_usuario_logado, 'Login')
Example #9
0
def test_link_login_in_home_unavailable(resp_home_with_user_logged):
    assert_not_contains(resp_home_with_user_logged, reverse('login'))
Example #10
0
def test_link_de_login_indisponible(resp_home_con_usuario_logeado):
    assert_not_contains(resp_home_con_usuario_logeado, reverse('login'))
Example #11
0
def test_botao_link_entrar_indisponivel(resp_com_usuario_logado):
    assert_not_contains(resp_com_usuario_logado, reverse('login'))
Example #12
0
def test_boton_entrar_indisponible(resp_home_con_usuario_logeado):
    assert_not_contains(resp_home_con_usuario_logeado, 'Entrar')
Example #13
0
def test_link_de_login_ausente(resp_home_com_usuario_logado):
    assert_not_contains(resp_home_com_usuario_logado, reverse('login'))
Example #14
0
def test_botao_entrar_ausente(resp_home_com_usuario_logado):
    assert_not_contains(resp_home_com_usuario_logado, 'Entrar')
Example #15
0
def test_link_login_indisponivel(resp_home_usuario_logado):
    assert_not_contains(resp_home_usuario_logado, reverse("login"))
Example #16
0
def test_botao_entrar_indisponivel(resp_home_usuario_logado):
    assert_not_contains(resp_home_usuario_logado, "Entrar")