blob: 94dbf3a6a6a21b283b38f98f55a314a380cfe741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import os
import qmk.path
def test_keymap_onekey_pytest():
path = qmk.path.keymap('handwired/onekey/pytest')
assert path == 'keyboards/handwired/onekey/keymaps'
def test_normpath():
path = qmk.path.normpath('lib/python')
assert path == os.environ['ORIG_CWD'] + '/lib/python'
|