Add messages field

This commit is contained in:
Jim Ladd
2019-08-14 10:25:25 -07:00
parent efbaf46179
commit cb411cc3be
4 changed files with 35 additions and 1 deletions

View File

@@ -42,6 +42,8 @@ def test_basic_parameterization(get, post, user, organization):
assert 'notification_configuration' in response.data
assert 'url' in response.data['notification_configuration']
assert 'headers' in response.data['notification_configuration']
assert 'messages' in response.data
assert response.data['messages'] == {'started': None, 'success': None, 'error': None}
@pytest.mark.django_db