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

7 lines
142 B
Python
Raw Normal View History

2023-08-14 15:32:22 -07:00
from app.errors import VirusScanError
def test_virus_scan_error():
vse = VirusScanError("a message")
assert "a message" in vse.args