qmk_firmware/lib/python/qmk/tests/test_qmk_errors.py

9 lines
216 B
Python
Raw Normal View History

2019-08-21 23:40:24 -07:00
from qmk.errors import NoSuchKeyboardError
2019-08-21 23:46:51 -07:00
2019-08-21 23:40:24 -07:00
def test_NoSuchKeyboardError():
try:
2019-08-21 23:46:51 -07:00
raise NoSuchKeyboardError("test message")
2019-08-21 23:40:24 -07:00
except NoSuchKeyboardError as e:
assert e.message == 'test message'