~ruther/qmk_firmware

ref: d49edbcf14ac0a8252fe274ba228b2792452f811 qmk_firmware/lib/python/qmk/tests/test_qmk_errors.py -rw-r--r-- 216 bytes
d49edbcf — Ryan Neff Added OLED SSD1306 128x64 to the verified working table (#22112) 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
from qmk.errors import NoSuchKeyboardError


def test_nosuchkeyboarderror():
    try:
        raise NoSuchKeyboardError("test message")
    except NoSuchKeyboardError as e:
        assert e.message == 'test message'
Do not follow this link