comparison 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
comparison
equal deleted inserted replaced
48:8fbf968e8dea 49:7364d06af5b9
1 # Requires `pytest` 1 # Requires `pytest`
2 2
3 import os
3 from silvermirror import unify 4 from silvermirror import unify
4 5
6 HERE = os.path.dirname(os.path.abspath(__file__))
7 CONF = os.path.join(HERE, 'silvermirror.ini')
8
9
5 def test_read_config(): 10 def test_read_config():
6 assert True # TODO 11 unify.read_config(CONF)
12