Files
atst/tests/forms/test_task_order_form.py
2019-01-04 14:08:44 -05:00

11 lines
265 B
Python

import pytest
from wtforms import Form
from atst.forms.task_order import AppInfoForm
def test_complexity():
form = AppInfoForm(formdata={"complexity": ["other", "not_sure", "storage"]})
assert form.data["complexity"] == ["other", "not_sure", "storage"]