request can update financial verification data

This commit is contained in:
dandds
2018-08-21 16:24:30 -04:00
parent f2dbed1ef1
commit e3631da8ea
7 changed files with 120 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
import pytest
from atst.models.task_order import Source as TaskOrderSource
from atst.domain.exceptions import NotFoundError
from atst.domain.task_orders import TaskOrders
from atst.eda_client import MockEDAClient
@@ -19,6 +20,7 @@ def test_can_get_task_order_from_eda(monkeypatch):
to = TaskOrders.get(MockEDAClient.MOCK_CONTRACT_NUMBER)
assert to.number == MockEDAClient.MOCK_CONTRACT_NUMBER
assert to.source == TaskOrderSource.EDA
def test_nonexistent_task_order_raises_without_client():