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