~raoul-snyman/openlp/pyro-impress

« back to all changes in this revision

Viewing changes to tests/functional/openlp_plugins/presentations/test_mediaitem.py

  • Committer: Raoul Snyman
  • Date: 2019-06-05 04:53:18 UTC
  • mfrom: (2700.2.174 openlp)
  • Revision ID: raoul@snyman.info-20190605045318-bd2hsvmgrf7f5qew
HEAD

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
"""
23
23
This module contains tests for the lib submodule of the Presentations plugin.
24
24
"""
 
25
from pathlib import Path
25
26
from unittest import TestCase
26
27
from unittest.mock import MagicMock, call, patch
27
28
 
28
 
from openlp.core.common.path import Path
29
29
from openlp.core.common.registry import Registry
30
30
from openlp.plugins.presentations.lib.mediaitem import PresentationMediaItem
31
31
from tests.helpers.testmixin import TestMixin