Setup a python test framework
This commit is contained in:
12
lib/python/qmk/tests/test_qmk_path.py
Normal file
12
lib/python/qmk/tests/test_qmk_path.py
Normal file
@ -0,0 +1,12 @@
|
||||
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'
|
Reference in New Issue
Block a user