0
0
mirror of https://github.com/qmk/qmk_firmware.git synced 2025-04-06 13:55:40 +00:00
qmk_firmware/lib/python/qmk/tests/test_qmk_errors.py
2019-12-01 13:40:14 -08:00

9 lines
216 B
Python

from qmk.errors import NoSuchKeyboardError
def test_nosuchkeyboarderror():
try:
raise NoSuchKeyboardError("test message")
except NoSuchKeyboardError as e:
assert e.message == 'test message'