qmk-firmware/lib/python/qmk/tests/test_qmk_path.py

15 lines
340 B
Python
Raw Normal View History

2019-08-22 06:40:24 +00:00
import os
from pathlib import Path
2019-08-22 06:40:24 +00:00
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.samefile('keyboards/handwired/onekey/keymaps')
2019-08-22 06:40:24 +00:00
def test_normpath():
path = qmk.path.normpath('lib/python')
assert path.samefile(Path(os.environ['ORIG_CWD']) / 'lib/python')