add test mixin

This commit is contained in:
Tim Bentley 2016-04-04 21:47:33 +01:00
parent 8a1b62fdcd
commit 0b480f5e8d
1 changed files with 3 additions and 2 deletions

View File

@ -24,11 +24,12 @@ Functional tests to test the AppLocation class and related methods.
"""
from unittest import TestCase
from openlp.core.common import add_actions, get_uno_instance, get_uno_command, get_frozen_path
from openlp.core.common import add_actions, get_uno_instance, get_uno_command
from tests.functional import MagicMock, patch
from tests.helpers.testmixin import TestMixin
class TestInit(TestCase):
class TestInit(TestCase, TestMixin):
"""
A test suite to test out various methods around the common __init__ class.
"""