qmk_firmware/lib/python/qmk/tests/test_qmk_path.py

14 lines
308 B
Python
Raw Normal View History

2019-08-22 06:40:24 +00:00
import os
import qmk.path
2019-08-22 06:46:51 +00:00
2019-08-22 06:40:24 +00: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.path.join(os.environ['ORIG_CWD'], 'lib/python')