0
0
mirror of https://github.com/qmk/qmk_firmware.git synced 2025-06-14 12:54:15 +00:00
qmk_firmware/lib/python/qmk/tests/test_qmk_path.py
2019-09-07 07:58:41 -07:00

14 lines
296 B
Python

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'