Exemplo n.º 1
0
def test_feed_path():
    customer_id = "squid"
    feed_id = "clam"
    expected = "customers/{customer_id}/feeds/{feed_id}".format(
        customer_id=customer_id,
        feed_id=feed_id,
    )
    actual = FeedServiceClient.feed_path(customer_id, feed_id)
    assert expected == actual
Exemplo n.º 2
0
def test_parse_feed_path():
    expected = {
        "customer_id": "whelk",
        "feed_id": "octopus",
    }
    path = FeedServiceClient.feed_path(**expected)

    # Check that the path construction is reversible.
    actual = FeedServiceClient.parse_feed_path(path)
    assert expected == actual