mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 00:02:36 -05:00
7 lines
147 B
Python
7 lines
147 B
Python
from app.exceptions import DVLAException
|
|
|
|
|
|
def test_dvla_exception():
|
|
dvla = DVLAException("a message")
|
|
assert dvla.message == "a message"
|