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