1
0
mirror of https://github.com/bspeice/metrik synced 2024-09-27 21:21:32 -04:00
metrik/test/test_conf.py
Bradlee Speice ce71c4bc94 Switch the configuration system
I like this one much better.
2016-08-24 15:52:07 -04:00

10 lines
211 B
Python

from unittest import TestCase
from metrik.conf import get_config
class ConfigurationTest(TestCase):
def test_config_returns_values(self):
config = get_config([])
assert config is not None