This commit is contained in:
jmartin 2013-02-07 09:46:25 +01:00
parent cd9fa3d2a9
commit 5b2b9b5133
5 changed files with 5 additions and 22 deletions

View file

@ -1,6 +1,6 @@
Spanish Account Module
######################
The account module defines Spanish Account.
The Spanish account module defines Spanish account chart and taxes.
* Plan General Contable Español 2008

View file

View file

@ -11,11 +11,9 @@ if os.path.isdir(DIR):
sys.path.insert(0, os.path.dirname(DIR))
import unittest
import datetime
import trytond.tests.test_tryton
from trytond.tests.test_tryton import POOL, DB_NAME, USER, CONTEXT, test_view,\
test_depends
from trytond.transaction import Transaction
from trytond.tests.test_tryton import test_depends
class AccountEsTestCase(unittest.TestCase):
'''
@ -24,17 +22,6 @@ class AccountEsTestCase(unittest.TestCase):
def setUp(self):
trytond.tests.test_tryton.install_module('account_es')
self.account_template = POOL.get('account.account.template')
self.account = POOL.get('account.account')
self.account_create_chart = POOL.get(
'account.create_chart', type='wizard')
self.company = POOL.get('company.company')
self.user = POOL.get('res.user')
self.fiscalyear = POOL.get('account.fiscalyear')
self.sequence = POOL.get('ir.sequence')
self.move = POOL.get('account.move')
self.journal = POOL.get('account.journal')
self.account_type = POOL.get('account.account.type')
def test0006depends(self):
'''
@ -45,10 +32,6 @@ class AccountEsTestCase(unittest.TestCase):
def suite():
suite = trytond.tests.test_tryton.suite()
from trytond.modules.company.tests import test_company
for test in test_company.suite():
if test not in suite:
suite.addTest(test)
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountEsTestCase))
return suite

View file

@ -3,5 +3,5 @@ version=2.7.0
depends:
account
xml:
account_es.xml
tax_es.xml
account.xml
tax.xml