module GdsApi::TestHelpers::PublishingApiV2
def publishing_api_has_links(links)
-
links(Hash) -- the structure of the links hash
def publishing_api_has_links(links) links = deep_transform_keys(links, &:to_sym) url = PUBLISHING_API_V2_ENDPOINT + "/links/" + links[:content_id] stub_request(:get, url).to_return(status: 200, body: links.to_json, headers: {}) end