You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
336 B
11 lines
336 B
3 months ago
|
FactoryBot.define do
|
||
|
factory :collection_resource, class: "CollectionResource" do
|
||
|
resource_type { "paper_form" }
|
||
|
display_name { "lettings log for tenants (2021 to 2022)" }
|
||
|
short_display_name { "Paper Form" }
|
||
|
year { 2024 }
|
||
|
log_type { "lettings" }
|
||
|
download_filename { "24_25_lettings_paper_form.pdf" }
|
||
|
end
|
||
|
end
|