forked from openlp/openlp
Make about() method of SongUsagePlugin static and add a test for it
This commit is contained in:
parent
ed0b739d97
commit
480a2d8512
@ -227,7 +227,8 @@ class SongUsagePlugin(Plugin):
|
|||||||
self.song_usage_detail_form.initialise()
|
self.song_usage_detail_form.initialise()
|
||||||
self.song_usage_detail_form.exec()
|
self.song_usage_detail_form.exec()
|
||||||
|
|
||||||
def about(self):
|
@staticmethod
|
||||||
|
def about():
|
||||||
"""
|
"""
|
||||||
The plugin about text
|
The plugin about text
|
||||||
|
|
||||||
|
24
tests/functional/openlp_plugins/songusage/__init__.py
Normal file
24
tests/functional/openlp_plugins/songusage/__init__.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# Copyright (c) 2008-2016 OpenLP Developers #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# 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; version 2 of the License. #
|
||||||
|
# #
|
||||||
|
# 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., 59 #
|
||||||
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||||
|
###############################################################################
|
||||||
|
"""
|
||||||
|
Tests for the Songusage plugin
|
||||||
|
"""
|
31
tests/functional/openlp_plugins/songusage/test_songusage.py
Normal file
31
tests/functional/openlp_plugins/songusage/test_songusage.py
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# Copyright (c) 2008-2016 OpenLP Developers #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# 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; version 2 of the License. #
|
||||||
|
# #
|
||||||
|
# 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., 59 #
|
||||||
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||||
|
###############################################################################
|
||||||
|
"""
|
||||||
|
This module contains tests for the Songusage plugin.
|
||||||
|
"""
|
||||||
|
from unittest import TestCase
|
||||||
|
from openlp.plugins.songusage.songusageplugin import SongUsagePlugin
|
||||||
|
|
||||||
|
class TestSongUsage(TestCase):
|
||||||
|
|
||||||
|
def test_about_text(self):
|
||||||
|
self.assertNotEquals(len(SongUsagePlugin.about()), 0)
|
Loading…
Reference in New Issue
Block a user