trabajo-afectivo/spec/factories/controllers/application_controller/paginates/pagination.rb

13 lines
294 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
FactoryBot.define do
factory :'can_paginate/pagination', aliases: %i[pagination] do
params { {} }
default { nil }
max { nil }
initialize_with { new(params, default: default, max: max) }
end
end