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

7 lines
142 B
Python

from app.errors import VirusScanError
def test_virus_scan_error():
vse = VirusScanError("a message")
assert "a message" in vse.args