mirror of
https://github.com/kemko/qmk_firmware.git
synced 2026-01-01 15:55:45 +03:00
8 lines
216 B
Python
8 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'
|