1
0
Fork 0

Setup a python test framework

This commit is contained in:
skullY 2019-08-21 23:40:24 -07:00 committed by skullydazed
parent 4d339b7b5d
commit 5b7a5b2a76
15 changed files with 130 additions and 11 deletions

View 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'