annotate test/test_unify.py @ 54:35b94053aafb
default tip
update to use ssh for upstream src
author |
Jeff Hammel <k0scist@gmail.com> |
date |
Sun, 02 Jun 2024 14:27:38 -0700 (11 months ago) |
parents |
7364d06af5b9 |
children |
|
rev |
line source |
48
|
1 # Requires `pytest`
|
|
2
|
49
|
3 import os
|
48
|
4 from silvermirror import unify
|
|
5
|
49
|
6 HERE = os.path.dirname(os.path.abspath(__file__))
|
|
7 CONF = os.path.join(HERE, 'silvermirror.ini')
|
|
8
|
|
9
|
48
|
10 def test_read_config():
|
49
|
11 unify.read_config(CONF)
|
|
12
|