diff --git a/tests/context.py b/tests/context.py new file mode 100644 index 0000000..9b46818 --- /dev/null +++ b/tests/context.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# missingnotice_tests.py +# +# Copyright 2018 Jonathan Golder +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. +# +# + +import os +import sys +sys.path.insert( + 0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) diff --git a/tests/missingnotice_tests.py b/tests/missingnotice_tests.py new file mode 100644 index 0000000..7cbe286 --- /dev/null +++ b/tests/missingnotice_tests.py @@ -0,0 +1,44 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# missingnotice_tests.py +# +# Copyright 2018 Jonathan Golder +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. +# +# + +""" +Test module bot/missingnotice.py +""" + +import unittest +from unittest import mock # noqa + +import context # noqa +from bots.missingnotice import MissingNoticeBot # noqa + + +class TestMissingNoticeBot(unittest.TestCase): + """ + Test class MissingNoticeBot + """ + pass + + +if __name__ == '__main__': + unittest.main()