def test_parse_common_organization_path(): expected = { "organization": "nudibranch", } path = LicenseCodesClient.common_organization_path(**expected) # Check that the path construction is reversible. actual = LicenseCodesClient.parse_common_organization_path(path) assert expected == actual
def test_common_organization_path(): organization = "oyster" expected = "organizations/{organization}".format( organization=organization, ) actual = LicenseCodesClient.common_organization_path(organization) assert expected == actual