Files
notifications-api/tests/app/test_exceptions.py
Kenneth Kehl b9ba7d018b more tests
2023-08-14 15:32:22 -07:00

7 lines
147 B
Python

from app.exceptions import DVLAException
def test_dvla_exception():
dvla = DVLAException("a message")
assert dvla.message == "a message"