summaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests/test_qmk_path.py
blob: 23816be7ede28cf9b4b6efdf700f096a5d4548d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'