diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-22 12:04:32 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-22 12:04:32 +0100 |
commit | 113f9483a2b2863f3e7e176285e9031593843eda (patch) | |
tree | 0f8e340e919b678da9c6c6d17476cd30754a6dc2 /ctrack/register/tests/test_models.py | |
parent | 492c345e355d2ab38bf8fc331f30d7c9df119a0f (diff) |
another test passes but horrific code
Diffstat (limited to '')
-rw-r--r-- | ctrack/register/tests/test_models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ctrack/register/tests/test_models.py b/ctrack/register/tests/test_models.py index 1a89fd5..1e8351b 100644 --- a/ctrack/register/tests/test_models.py +++ b/ctrack/register/tests/test_models.py @@ -17,6 +17,7 @@ pytestmark = pytest.mark.django_db "allowed_type", [ "CAF_INITIAL_CAF_RECEIVED", + "CAF_INITIAL_REVIEW_COMPLETE", "CAF_FEEDBACK_EMAILED_OES", "CAF_RECEIVED", "CAF_EMAILED_ROSA", @@ -151,6 +152,7 @@ def test_event_type_enum(): assert EventType.VIDEO_CALL.name == "VIDEO_CALL" assert EventType.EMAIL.name == "EMAIL" assert EventType.CAF_INITIAL_CAF_RECEIVED.name == "CAF_INITIAL_CAF_RECEIVED" + assert EventType.CAF_INITIAL_REVIEW_COMPLETE.name == "CAF_INITIAL_REVIEW_COMPLETE" assert EventType.CAF_FEEDBACK_EMAILED_OES.name == "CAF_FEEDBACK_EMAILED_OES" assert EventType.CAF_RECEIVED.name == "CAF_RECEIVED" assert EventType.CAF_EMAILED_ROSA.name == "CAF_EMAILED_ROSA" |