2019-08-21 23:40:24 -07:00
|
|
|
import os
|
|
|
|
|
|
|
|
import qmk.path
|
|
|
|
|
2019-08-21 23:46:51 -07:00
|
|
|
|
2019-08-21 23:40:24 -07:00
|
|
|
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'
|