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