mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-22 05:36:54 +01:00
16 lines
376 B
Python
16 lines
376 B
Python
#-*- coding: utf-8 -*-
|
|
|
|
import unittest
|
|
from unittest import mock
|
|
|
|
"""
|
|
import tests.loader_utils
|
|
from lodel.settings.settings import Settings
|
|
|
|
class SettingsTestCase(unittest.TestCase):
|
|
|
|
@unittest.skip('todo : write it')
|
|
def test_init(self):
|
|
settings = Settings('tests/settings/settings_tests.ini', 'tests/settings/settings_tests_conf.d')
|
|
pass
|
|
"""
|