This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
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'