summaryrefslogtreecommitdiff
path: root/spec/support/matchers/pagination_matcher.rb
blob: 60f5e8239a735fc0a372ea7942b03152e5c75a97 (plain)
1
2
3
4
5
RSpec::Matchers.define :include_pagination_headers do |expected|
  match do |actual|
    expect(actual.headers).to include('X-Total', 'X-Total-Pages', 'X-Per-Page', 'X-Page', 'X-Next-Page', 'X-Prev-Page', 'Link')
  end
end