~phill-ridout/openlp/import-depreciations

« back to all changes in this revision

Viewing changes to tests/functional/openlp_core_lib/test_image_manager.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:
25
25
import os
26
26
import time
27
27
from threading import Lock
28
 
 
29
28
from unittest import TestCase
 
29
from unittest.mock import patch
 
30
 
30
31
from PyQt5 import QtGui
31
32
 
32
33
from openlp.core.common import Registry
33
34
from openlp.core.lib import ImageManager, ScreenList
34
35
from openlp.core.lib.imagemanager import Priority
35
 
from tests.functional import patch
 
36
 
36
37
from tests.helpers.testmixin import TestMixin
37
38
 
38
39
TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'resources'))