facho/fe/form_xml: se translada de vecindario.
FossilOrigin-Name: 1f10d9fdd2362de65561943f96720ecb03e8cbbc34ada162359cb4636f6cc266
This commit is contained in:
29
tests/test_form_xml.py
Normal file
29
tests/test_form_xml.py
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
# This file is part of facho. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
"""Tests for `facho` package."""
|
||||
|
||||
import pytest
|
||||
|
||||
from facho.fe import form_xml
|
||||
|
||||
def test_import_DIANInvoiceXML():
|
||||
try:
|
||||
form_xml.DIANInvoiceXML
|
||||
except AttributeError:
|
||||
pytest.fail("unexpected not found")
|
||||
|
||||
|
||||
def test_import_DIANDebitNoteXML():
|
||||
try:
|
||||
form_xml.DIANDebitNoteXML
|
||||
except AttributeError:
|
||||
pytest.fail("unexpected not found")
|
||||
|
||||
def test_import_DIANCreditNoteXML():
|
||||
try:
|
||||
form_xml.DIANCreditNoteXML
|
||||
except AttributeError:
|
||||
pytest.fail("unexpected not found")
|
||||
Reference in New Issue
Block a user