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