blob: 74db7b3e269916a734b60e3dd5131359f6d0006e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import os
from pathlib import Path
import qmk.path
def test_keymap_onekey_pytest():
path = qmk.path.keymap('handwired/onekey/pytest')
assert path.samefile('keyboards/handwired/onekey/keymaps')
def test_normpath():
path = qmk.path.normpath('lib/python')
assert path.samefile(Path(os.environ['ORIG_CWD']) / 'lib/python')
|