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.
 
 
 
 

28 lines
839 B

# -*- coding: utf-8 -*-
# Copyright 2009-2017 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from .test_common_xls import TestCommonXls
class TestGeneralLedgerXls(TestCommonXls):
def _getReportModel(self):
return 'general.ledger.webkit'
def _getXlsReportName(self):
return 'account.account_report_general_ledger_xls'
def _getXlsReportActionName(self):
module = 'account_financial_report_webkit'
action = 'account_report_general_ledger_webkit'
return '%s.%s' % (module, action)
def _getBaseFilters(self):
return {}
def test_common(self):
common_tests = [
x for x in dir(self)
if callable(getattr(self, x)) and x.startswith('common_test_')]
for test in common_tests:
getattr(self, test)()