diff --git a/addons/mass_mailing/doc/changelog.rst b/addons/mass_mailing/doc/changelog.rst new file mode 100644 index 00000000000..a000c4ae396 --- /dev/null +++ b/addons/mass_mailing/doc/changelog.rst @@ -0,0 +1,9 @@ +.. _changelog: + +Changelog +========= + +`trunk (saas-2)` +---------------- + + - added module \ No newline at end of file diff --git a/addons/mass_mailing/doc/index.rst b/addons/mass_mailing/doc/index.rst new file mode 100644 index 00000000000..3d991c7d9dd --- /dev/null +++ b/addons/mass_mailing/doc/index.rst @@ -0,0 +1,13 @@ +Mass Mailing module documentation +================================= + +Mass Mailing documentation topics +''''''''''''''''''''''''''''''''' + +Changelog +''''''''' + +.. toctree:: + :maxdepth: 1 + + changelog.rst diff --git a/addons/mass_mailing/tests/__init__.py b/addons/mass_mailing/tests/__init__.py new file mode 100644 index 00000000000..f8610905393 --- /dev/null +++ b/addons/mass_mailing/tests/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Business Applications +# Copyright (C) 2013-Today OpenERP SA () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see +# +############################################################################## + +from openerp.addons.mass_mailing.tests import test_mail + +checks = [ + test_mail, +] diff --git a/addons/mass_mailing/tests/test_mail.py b/addons/mass_mailing/tests/test_mail.py new file mode 100644 index 00000000000..0e3b4b8608e --- /dev/null +++ b/addons/mass_mailing/tests/test_mail.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Business Applications +# Copyright (C) 2013-Today OpenERP SA () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.addons.mail.tests.common import TestMail + + +class test_message_compose(TestMail): + + def test_OO_mail_mail_tracking(self): + """ Tests designed for mail_mail tracking (opened, replied, bounced) """ + pass