forked from openlp/openlp
Start of settings tests
This commit is contained in:
parent
203eb315b7
commit
b119783a2c
19
tests/functional/openlp_core_lib/test_settings.py
Normal file
19
tests/functional/openlp_core_lib/test_settings.py
Normal file
@ -0,0 +1,19 @@
|
||||
"""
|
||||
Package to test the openlp.core.lib package.
|
||||
"""
|
||||
import os
|
||||
|
||||
from unittest import TestCase
|
||||
from mock import MagicMock
|
||||
from openlp.core.lib import Settings
|
||||
|
||||
TESTPATH = os.path.abspath(os.path.join(os.path.dirname(__file__), u'..', u'..', u'resources'))
|
||||
|
||||
class TestSettings(TestCase):
|
||||
|
||||
def settings_basic_test(self):
|
||||
"""
|
||||
Test the Settings creation and its usage
|
||||
"""
|
||||
# GIVEN: A new Settings
|
||||
settings = Settings()
|
Loading…
Reference in New Issue
Block a user