Browse Source

Conserta bug no teste de parlamentar

pull/285/merge
Eduardo Edson Batista Cordeiro Alves 9 years ago
parent
commit
e2f1efb1d9
  1. 5
      parlamentares/test_parlamentares.py
  2. 4
      parlamentares/views.py

5
parlamentares/test_parlamentares.py

@ -12,13 +12,12 @@ def test_cadastro_parlamentar(client):
response = client.get(reverse('parlamentares_cadastro', kwargs={'pk': 5}))
assert response.status_code == 200
response = client.post(reverse('parlamentares_cadastro', kwargs={'pk': 5}),
{'nome_completo': 'Teresa Barbosa',
'nome_parlamentar': 'Terezinha',
'sexo': 'F',
'ativo': 'True',
})
'ativo': 'True'}, follow=True)
parlamentar = Parlamentar.objects.first()
assert "Terezinha" == parlamentar.nome_parlamentar
if not parlamentar.ativo:

4
parlamentares/views.py

@ -186,10 +186,6 @@ class ParlamentaresCadastroView(CreateView):
def form_valid(self, form):
form.save()
mandato = Mandato()
mandato.parlamentar = form.instance
mandato.legislatura = Legislatura.objects.get(id=self.kwargs['pk'])
mandato.save()
return redirect(self.get_success_url())

Loading…
Cancel
Save