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