mastodon/spec/support/matchers/api_pagination.rb

14 lines
369 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
RSpec::Matchers.define :include_pagination_headers do |links|
match do |response|
links.map do |key, value|
expect(response).to have_http_link_header(value).for(rel: key.to_s)
end.all?
end
failure_message do |response|
"expected that #{response.headers['Link']} would have the same values as #{links}."
end
end