remove over-eager survey choices validation

it looks like choices can also be a list and _maybe_ comma delimited;
clearly there's a lot of history here; let's verify and test what's _really_ supported and _then_ add any necessary validation
This commit is contained in:
Ryan Petrello
2018-10-15 16:28:09 -04:00
parent c722e50595
commit 00cae104b3
2 changed files with 0 additions and 6 deletions

View File

@@ -383,7 +383,6 @@ class TestSurveySpecValidation:
({'type': 'foo'}, 'allowed question types'),
({'type': u'🐉'}, 'allowed question types'),
({'type': 'multiplechoice'}, 'multiplechoice must specify choices'),
({'type': 'multiplechoice', 'choices': 45}, 'Choices in survey question 0 expected to be string'),
({'type': 'integer', 'min': 'foo'}, 'min limit in survey question 0 expected to be integer'),
({'question_name': 42}, "'question_name' in survey question 0 expected to be string.")
])