forked from forks/qmk_firmware
9 lines
216 B
Python
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'
|