Browse Source

Remove grupo_usuario_id de testes

pull/529/head
Edward Ribeiro 9 years ago
parent
commit
45b3b161d4
  1. 12
      sapl/materia/tests/test_materia.py

12
sapl/materia/tests/test_materia.py

@ -129,8 +129,7 @@ def test_autoria_submit(admin_client):
autor = mommy.make( autor = mommy.make(
Autor, Autor,
tipo=tipo_autor, tipo=tipo_autor,
nome='Autor Teste', nome='Autor Teste')
grupo_usuario_id=8)
# Testa POST # Testa POST
response = admin_client.post(reverse('sapl.materia:autoria_create', response = admin_client.post(reverse('sapl.materia:autoria_create',
@ -210,8 +209,7 @@ def test_documento_acessorio_submit(admin_client):
autor = mommy.make( autor = mommy.make(
Autor, Autor,
tipo=tipo_autor, tipo=tipo_autor,
nome='Autor Teste', nome='Autor Teste')
grupo_usuario_id=8)
# Cria um tipo de documento # Cria um tipo de documento
tipo = mommy.make(TipoDocumento, tipo = mommy.make(TipoDocumento,
@ -442,8 +440,7 @@ def test_proposicao_submit(admin_client):
Autor, Autor,
user=user, user=user,
tipo=tipo_autor, tipo=tipo_autor,
nome='Autor Teste', nome='Autor Teste')
grupo_usuario_id=8)
file_content = 'file_content' file_content = 'file_content'
texto = SimpleUploadedFile("file.txt", file_content.encode('UTF-8')) texto = SimpleUploadedFile("file.txt", file_content.encode('UTF-8'))
@ -476,8 +473,7 @@ def test_form_errors_proposicao(admin_client):
Autor, Autor,
user=user, user=user,
tipo=tipo_autor, tipo=tipo_autor,
nome='Autor Teste', nome='Autor Teste')
grupo_usuario_id=8)
file_content = 'file_content' file_content = 'file_content'
texto = SimpleUploadedFile("file.txt", file_content.encode('UTF-8')) texto = SimpleUploadedFile("file.txt", file_content.encode('UTF-8'))

Loading…
Cancel
Save