2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
FactoryBot.define do
|
2020-04-17 19:02:07 +00:00
|
|
|
factory :nm_justice, class: Nonprofit do
|
|
|
|
id { 55352 }
|
|
|
|
name { 'New Mexico Justice' }
|
2019-01-16 20:33:21 +00:00
|
|
|
city { 'Albuquerque' }
|
|
|
|
state_code { 'NM' }
|
2019-07-30 21:29:24 +00:00
|
|
|
zip_code { 55_555 }
|
2020-04-17 19:02:07 +00:00
|
|
|
email { 'nmj@gmail.com' }
|
2020-04-20 19:41:01 +00:00
|
|
|
slug { 'new-mexico-equality' }
|
2020-04-17 19:02:07 +00:00
|
|
|
state_code_slug { 'nm'}
|
|
|
|
city_slug { 'albuquerque'}
|
2020-04-17 20:30:54 +00:00
|
|
|
register_np_only { true }
|
2020-04-17 19:02:07 +00:00
|
|
|
end
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2020-04-17 19:02:07 +00:00
|
|
|
factory :fv_poverty, class: Nonprofit do
|
|
|
|
id { 22352 }
|
|
|
|
name { 'Ending Poverty in the Fox Valley Inc.' }
|
|
|
|
city { 'Appleton' }
|
|
|
|
state_code { 'WI' }
|
|
|
|
zip_code { 54915 }
|
|
|
|
email { 'contact@endpovertyinthefoxvalleyinc.org' }
|
|
|
|
website {'https://endpovertyinthefoxvalleyinc.org'}
|
2020-04-20 19:41:01 +00:00
|
|
|
slug { 'end-poverty-in-the-fox-valley-inc' }
|
2020-04-17 19:02:07 +00:00
|
|
|
state_code_slug { 'wi'}
|
|
|
|
city_slug { 'appleton'}
|
2020-04-17 20:30:54 +00:00
|
|
|
register_np_only { true }
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|