def test_parse_common_billing_account_path(): expected = { "billing_account": "abalone", } path = CustomerLabelServiceClient.common_billing_account_path(**expected) # Check that the path construction is reversible. actual = CustomerLabelServiceClient.parse_common_billing_account_path(path) assert expected == actual
def test_common_billing_account_path(): billing_account = "scallop" expected = "billingAccounts/{billing_account}".format(billing_account=billing_account, ) actual = CustomerLabelServiceClient.common_billing_account_path(billing_account) assert expected == actual