Mercurial > hg > silvermirror
diff test/test_unify.py @ 49:7364d06af5b9
passing test
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Fri, 13 Aug 2021 15:12:53 -0700 |
parents | 8fbf968e8dea |
children |
line wrap: on
line diff
--- a/test/test_unify.py Fri Aug 13 15:07:11 2021 -0700 +++ b/test/test_unify.py Fri Aug 13 15:12:53 2021 -0700 @@ -1,6 +1,12 @@ # Requires `pytest` +import os from silvermirror import unify +HERE = os.path.dirname(os.path.abspath(__file__)) +CONF = os.path.join(HERE, 'silvermirror.ini') + + def test_read_config(): - assert True # TODO + unify.read_config(CONF) +