summaryrefslogtreecommitdiffstats
path: root/lib/python/qmk/tests/test_qmk_path.py
blob: d6961a0f652fdf6c8987a7f0bd5d5f668f97bedb (plain)
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.path.join(os.environ['ORIG_CWD'], 'lib/python')