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