~raoul-snyman/openlp/fix-macos-pdf-test

« back to all changes in this revision

Viewing changes to tests/functional/openlp_plugins/bibles/test_swordimport.py

  • Committer: Raoul Snyman
  • Date: 2019-02-14 07:04:30 UTC
  • mfrom: (2766.3.118 webengine-migrate)
  • Revision ID: raoul@snyman.info-20190214070430-nxe1vaeaapq3ult5
Migration from WebKit to Webengine. Also introduced reveal.js for slide rendering, new screen setup dialogs and many other changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from unittest import TestCase, skipUnless
26
26
from unittest.mock import MagicMock, patch
27
27
 
 
28
from openlp.plugins.bibles.lib.db import BibleDB
 
29
from tests.utils import load_external_result_data
 
30
from tests.utils.constants import RESOURCE_PATH
 
31
 
 
32
 
28
33
try:
29
34
    from openlp.plugins.bibles.lib.importers.sword import SwordBible
30
35
    HAS_PYSWORD = True
31
36
except ImportError:
32
37
    HAS_PYSWORD = False
33
38
 
34
 
from openlp.plugins.bibles.lib.db import BibleDB
35
 
 
36
 
from tests.utils import load_external_result_data
37
 
from tests.utils.constants import RESOURCE_PATH
38
39
 
39
40
TEST_PATH = RESOURCE_PATH / 'bibles'
40
41