Add routes for first step of TO builder

This commit is contained in:
leigh-mil
2019-07-15 16:42:15 -04:00
parent c8d8b7cce2
commit 45390835ed
8 changed files with 147 additions and 35 deletions

View File

@@ -51,7 +51,10 @@ def test_review_task_order_draft(client, user_session, task_order):
url_for("task_orders.review_task_order", task_order_id=task_order.id)
)
assert response.status_code == 302
assert url_for("task_orders.edit", task_order_id=task_order.id) in response.location
assert (
url_for("task_orders.add_to_pdf", task_order_id=task_order.id)
in response.location
)
def test_submit_task_order(client, user_session, task_order):