Start of settings tests

This commit is contained in:
Tim Bentley 2013-02-11 18:08:32 +00:00
parent 203eb315b7
commit b119783a2c
1 changed files with 19 additions and 0 deletions

View 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()