Browse Source

Modificação na estrutura do projeto - Movendo testes para fora do pacote

pull/65/head
Danimar Ribeiro 8 years ago
parent
commit
0c89b3e957
  1. 0
      tests/XMLs/NFe00000857.xml
  2. 0
      tests/XMLs/jinja_remove_empty.xml
  3. 0
      tests/XMLs/jinja_result.xml
  4. 0
      tests/XMLs/jinja_template.xml
  5. 0
      tests/XMLs/paulistana_canc.xml
  6. 0
      tests/XMLs/paulistana_canc_errado.xml
  7. 0
      tests/XMLs/paulistana_canc_ok.xml
  8. 0
      tests/XMLs/paulistana_resultado.xml
  9. 0
      tests/XMLs/paulistana_signature.xml
  10. 0
      tests/XMLs/recibo_envio_1.xml
  11. 0
      tests/XMLs/recibo_envio_2.xml
  12. 0
      tests/XMLs/recibo_protocolo_sucesso_1.xml
  13. 0
      tests/XMLs/recibo_protocolo_sucesso_2.xml
  14. 0
      tests/__init__.py
  15. 4
      tests/test_add_qr_code.py
  16. 0
      tests/test_assinatura.py
  17. 0
      tests/test_certificado.py
  18. 0
      tests/test_comunicacao.py
  19. 0
      tests/test_consulta_cadastro.py
  20. 0
      tests/test_danfe.py
  21. 0
      tests/test_ginfes.py
  22. 0
      tests/test_nfse_paulistana.py
  23. 0
      tests/test_servidores.py
  24. 0
      tests/test_utils.py
  25. 0
      tests/test_xml.py
  26. 0
      tests/test_xml_serializacao.py
  27. 0
      tests/teste.pfx
  28. 0
      tests/xml_assinado.xml
  29. 0
      tests/xml_com_qrcode.xml
  30. 0
      tests/xml_sem_qrcode.xml
  31. 0
      tests/xml_valido_assinado.xml

0
pytrustnfe/test/XMLs/NFe00000857.xml → tests/XMLs/NFe00000857.xml

0
pytrustnfe/test/XMLs/jinja_remove_empty.xml → tests/XMLs/jinja_remove_empty.xml

0
pytrustnfe/test/XMLs/jinja_result.xml → tests/XMLs/jinja_result.xml

0
pytrustnfe/test/XMLs/jinja_template.xml → tests/XMLs/jinja_template.xml

0
pytrustnfe/test/XMLs/paulistana_canc.xml → tests/XMLs/paulistana_canc.xml

0
pytrustnfe/test/XMLs/paulistana_canc_errado.xml → tests/XMLs/paulistana_canc_errado.xml

0
pytrustnfe/test/XMLs/paulistana_canc_ok.xml → tests/XMLs/paulistana_canc_ok.xml

0
pytrustnfe/test/XMLs/paulistana_resultado.xml → tests/XMLs/paulistana_resultado.xml

0
pytrustnfe/test/XMLs/paulistana_signature.xml → tests/XMLs/paulistana_signature.xml

0
pytrustnfe/test/XMLs/recibo_envio_1.xml → tests/XMLs/recibo_envio_1.xml

0
pytrustnfe/test/XMLs/recibo_envio_2.xml → tests/XMLs/recibo_envio_2.xml

0
pytrustnfe/test/XMLs/recibo_protocolo_sucesso_1.xml → tests/XMLs/recibo_protocolo_sucesso_1.xml

0
pytrustnfe/test/XMLs/recibo_protocolo_sucesso_2.xml → tests/XMLs/recibo_protocolo_sucesso_2.xml

0
pytrustnfe/test/__init__.py → tests/__init__.py

4
pytrustnfe/test/test_add_qr_code.py → tests/test_add_qr_code.py

@ -9,8 +9,8 @@ from pytrustnfe.nfe import _add_qrCode
class TestAddQRCode(unittest.TestCase):
def setUp(self):
self.xml_sem_qrcode = open('pytrustnfe/test/xml_sem_qrcode.xml', 'r')
self.xml_com_qrcode = open('pytrustnfe/test/xml_com_qrcode.xml', 'r')
self.xml_sem_qrcode = open('tests/xml_sem_qrcode.xml', 'r')
self.xml_com_qrcode = open('tests/xml_com_qrcode.xml', 'r')
dhEmi = '2016-11-09T16:03:25-00:00'
chave_nfe = 'NFe35161121332917000163650010000000011448875034'
ambiente = 2

0
pytrustnfe/test/test_assinatura.py → tests/test_assinatura.py

0
pytrustnfe/test/test_certificado.py → tests/test_certificado.py

0
pytrustnfe/test/test_comunicacao.py → tests/test_comunicacao.py

0
pytrustnfe/test/test_consulta_cadastro.py → tests/test_consulta_cadastro.py

0
pytrustnfe/test/test_danfe.py → tests/test_danfe.py

0
pytrustnfe/test/test_ginfes.py → tests/test_ginfes.py

0
pytrustnfe/test/test_nfse_paulistana.py → tests/test_nfse_paulistana.py

0
pytrustnfe/test/test_servidores.py → tests/test_servidores.py

0
pytrustnfe/test/test_utils.py → tests/test_utils.py

0
pytrustnfe/test/test_xml.py → tests/test_xml.py

0
pytrustnfe/test/test_xml_serializacao.py → tests/test_xml_serializacao.py

0
pytrustnfe/test/teste.pfx → tests/teste.pfx

0
pytrustnfe/test/xml_assinado.xml → tests/xml_assinado.xml

0
pytrustnfe/test/xml_com_qrcode.xml → tests/xml_com_qrcode.xml

0
pytrustnfe/test/xml_sem_qrcode.xml → tests/xml_sem_qrcode.xml

0
pytrustnfe/test/xml_valido_assinado.xml → tests/xml_valido_assinado.xml

Loading…
Cancel
Save