You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
322 B
20 lines
322 B
# coding=utf-8
|
|
'''
|
|
Created on Jun 16, 2015
|
|
|
|
@author: danimar
|
|
'''
|
|
import unittest
|
|
import os.path
|
|
|
|
|
|
XML_RETORNO = '<retEnviNFe><cStat>103</cStat>' \
|
|
'<cUF>42</cUF></retEnviNFe>'
|
|
|
|
|
|
class test_comunicacao(unittest.TestCase):
|
|
|
|
caminho = os.path.dirname(__file__)
|
|
|
|
def test_envio_nfe(self):
|
|
pass
|