Example #1
0
def test_parse_customer_path():
    expected = {
        "customer_id": "clam",
    }
    path = CustomerLabelServiceClient.customer_path(**expected)

    # Check that the path construction is reversible.
    actual = CustomerLabelServiceClient.parse_customer_path(path)
    assert expected == actual
Example #2
0
def test_customer_path():
    customer_id = "squid"
    expected = "customers/{customer_id}".format(customer_id=customer_id, )
    actual = CustomerLabelServiceClient.customer_path(customer_id)
    assert expected == actual