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.
18 lines
325 B
18 lines
325 B
'''
|
|
Created on 01/07/2015
|
|
|
|
@author: danimar
|
|
'''
|
|
import unittest
|
|
from pytrustnfe.pdf.Danfe import Danfe
|
|
from pytrustnfe.xml.DynamicXml import DynamicXml
|
|
|
|
class test_danfe(unittest.TestCase):
|
|
|
|
def test_geracao_danfe(self):
|
|
nfe = DynamicXml('ProtNFe')
|
|
pdf = Danfe(nfe)
|
|
pdf.gerar()
|
|
|
|
|
|
|