0
0
Fork 0

Don't send Link header when don't know prev and next links (#4633)

This commit is contained in:
Yamagishi Kazutoshi 2017-08-18 17:42:59 +09:00 committed by Eugen Rochko
parent 4edf9d849f
commit 2edfdab6e6
2 changed files with 2 additions and 3 deletions

View file

@ -70,8 +70,7 @@ RSpec.describe Api::V1::FavouritesController, type: :controller do
it 'does not add pagination headers if not necessary' do
get :index
expect(response.headers['Link'].find_link(['rel', 'next'])).to eq nil
expect(response.headers['Link'].find_link(['rel', 'prev'])).to eq nil
expect(response.headers['Link']).to eq nil
end
end
end