~ruther/qmk_firmware

ref: 178ceba73508b8a1fe2a38e89d4e4710e284f23b qmk_firmware/lib/python/qmk/tests/test_qmk_path.py -rw-r--r-- 296 bytes
178ceba7 — Zachary J. Slater Minor link fix in Clueboard README (#6823) 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
import os

import qmk.path


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')
    assert path == os.environ['ORIG_CWD'] + '/lib/python'