Ei kuvausta
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.

test_settings.py 368B

1234567891011121314
  1. #-*- coding: utf-8 -*-
  2. import unittest
  3. from unittest import mock
  4. import tests.loader_utils
  5. from lodel.settings.settings import Settings
  6. class SettingsTestCase(unittest.TestCase):
  7. @unittest.skip('todo : write it')
  8. def test_init(self):
  9. settings = Settings('tests/settings/settings_tests.ini', 'tests/settings/settings_tests_conf.d')
  10. pass