f1926b321d
We had similar code in a few places to redirect to the last page if the given page number is out of range. This unifies the handling in a new controller concern and adds usage of it in all snippet listings.
15 lines
294 B
Ruby
15 lines
294 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Explore::SnippetsController do
|
|
describe 'GET #index' do
|
|
it_behaves_like 'paginated collection' do
|
|
let(:collection) { Snippet.all }
|
|
|
|
before do
|
|
create(:personal_snippet, :public)
|
|
end
|
|
end
|
|
end
|
|
end
|