~phill-ridout/openlp/import-depreciations

« back to all changes in this revision

Viewing changes to tests/functional/openlp_core_lib/test_pluginmanager.py

  • Committer: Philip Ridout
  • Date: 2017-05-15 10:15:32 UTC
  • mfrom: (2732.1.1 openlp)
  • Revision ID: phill.ridout@gmail.com-20170515101532-j291crxa8ellqwbi
head

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
Package to test the openlp.core.lib.pluginmanager package.
24
24
"""
25
25
from unittest import TestCase
 
26
from unittest.mock import MagicMock
26
27
 
27
28
from openlp.core.common import Registry, Settings
28
29
from openlp.core.lib.pluginmanager import PluginManager
29
30
from openlp.core.lib import PluginStatus
30
 
from tests.functional import MagicMock
31
31
 
32
32
 
33
33
class TestPluginManager(TestCase):