Files
notifications-api/tests/app/test_exceptions.py

7 lines
147 B
Python
Raw Normal View History

2023-08-14 15:32:22 -07:00
from app.exceptions import DVLAException
def test_dvla_exception():
dvla = DVLAException("a message")
assert dvla.message == "a message"