mirror of
https://github.com/bspeice/metrik
synced 2024-11-05 06:58:12 -05:00
ce71c4bc94
I like this one much better.
10 lines
211 B
Python
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 |