def test_parse_feed_path(): expected = { "customer": "whelk", "feed": "octopus", } path = ChangeStatusServiceClient.feed_path(**expected) # Check that the path construction is reversible. actual = ChangeStatusServiceClient.parse_feed_path(path) assert expected == actual
def test_feed_path(): customer = "squid" feed = "clam" expected = "customers/{customer}/feeds/{feed}".format(customer=customer, feed=feed, ) actual = ChangeStatusServiceClient.feed_path(customer, feed) assert expected == actual