blunt rename of org (#620)

This commit is contained in:
Steven Reilly
2023-07-12 12:09:44 -04:00
committed by GitHub
parent 5fe81bc040
commit 13d0e46b52
107 changed files with 1471 additions and 1471 deletions

View File

@@ -0,0 +1,13 @@
import pytest
from app.models.organization import Organization
from tests import organization_json
@pytest.mark.parametrize("purchase_order_number,expected_result", [
[None, None],
["PO1234", [None, None, None, "PO1234"]]
])
def test_organization_billing_details(purchase_order_number, expected_result):
organization = Organization(organization_json(purchase_order_number=purchase_order_number))
assert organization.billing_details == expected_result