You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- #-*- coding: utf-8 -*-
-
- import unittest
- from unittest import mock
-
- import tests.loader_utils
- from lodel.settings.settings import Settings
-
- class SettingsTestCase(unittest.TestCase):
-
- def test_init(self):
- settings = Settings('tests/settings/settings_tests.ini', 'tests/settings/settings_tests_conf.d')
- print(settings.confs)
- pass
|