]> git.phdru.name Git - m_librarian.git/blob - tests/test_config.py
Docs: Update TODO
[m_librarian.git] / tests / test_config.py
1
2 import os
3 from m_librarian.config import get_config
4
5
6 def test_config():
7     config_path = os.path.join(
8         os.path.dirname(__file__), 'test_config.conf')
9     get_config(config_path)
10     ml_conf = get_config()
11     assert ml_conf.get('library', 'path') == '/home/test-config'