[ADD] account_export_csv: unit test.

pull/597/head
Adrien Peiffer (ACSONE) 2017-05-31 10:50:17 +02:00 committed by David Beal
parent 1c872966ed
commit 41ece7cf4c
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1 @@
from . import test_account_export_csv

View File

@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
# Copyright 2017 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from datetime import date
from dateutil import relativedelta
from odoo.tests.common import TransactionCase
from odoo import fields
class TestAccountExportCsv(TransactionCase):
def setUp(self):
super(TestAccountExportCsv, self).setUp()
self.report_wizard = self.env['account.csv.export']
today_dt = date.today()
next_month_date = today_dt + relativedelta.relativedelta(months=1)
self.report_date_start = fields.Date.to_string(today_dt)
self.report_date_end = fields.Date.to_string(next_month_date)
def test_1(self):
report_wizard = self.report_wizard.create({
'date_start': self.report_date_start,
'date_end': self.report_date_end
})
report_wizard.action_manual_export_account()
def test_2(self):
report_wizard = self.report_wizard.create({
'date_start': self.report_date_start,
'date_end': self.report_date_end
})
report_wizard.action_manual_export_analytic()
def test_3(self):
report_wizard = self.report_wizard.create({
'date_start': self.report_date_start,
'date_end': self.report_date_end
})
report_wizard.action_manual_export_journal_entries()