Add test for TO invite route
This commit is contained in:
11
tests/routes/task_orders/test_invite.py
Normal file
11
tests/routes/task_orders/test_invite.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import pytest
|
||||
from flask import url_for
|
||||
|
||||
from tests.factories import TaskOrderFactory
|
||||
|
||||
|
||||
def test_invite(client):
|
||||
to = TaskOrderFactory.create()
|
||||
response = client.post(
|
||||
url_for("task_orders.invite", task_order_id=to.id), follow_redirects=False
|
||||
)
|
Reference in New Issue
Block a user