2019-08-21 23:40:24 -07:00
|
|
|
import os
|
|
|
|
|
|
|
|
import qmk.path
|
|
|
|
|
2019-08-21 23:46:51 -07:00
|
|
|
|
2019-08-21 23:40:24 -07: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-12 17:27:08 -08:00
|
|
|
assert path == os.path.join(os.environ['ORIG_CWD'], 'lib/python')
|