~phill-ridout/openlp/import-depreciations

« back to all changes in this revision

Viewing changes to tests/functional/openlp_plugins/songs/test_mediashout.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:
22
22
"""
23
23
Test the MediaShout importer
24
24
"""
 
25
from collections import namedtuple
25
26
from unittest import TestCase, skipUnless
26
 
from collections import namedtuple
 
27
from unittest.mock import MagicMock, patch, call
27
28
 
28
29
from openlp.core.common import Registry
29
30
try:
32
33
except ImportError:
33
34
    CAN_RUN_TESTS = False
34
35
 
35
 
from tests.functional import MagicMock, patch, call
36
 
 
37
36
 
38
37
@skipUnless(CAN_RUN_TESTS, 'Not Windows, skipping test')
39
38
class TestMediaShoutImport(TestCase):