1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/factories/federal_subjects.rb

18 lines
332 B
Ruby
Raw Normal View History

2018-11-30 11:24:05 -05:00
# frozen_string_literal: true
FactoryBot.define do
2019-06-23 11:59:44 -04:00
factory :federal_subject do
2018-12-05 19:52:59 -05:00
initialize_with do
2019-06-23 11:54:41 -04:00
FederalSubject.find_or_initialize_by english_name: english_name
2018-12-05 19:52:59 -05:00
end
2019-04-28 08:48:51 -04:00
english_name do
I18n.with_locale :en do
Faker::Address.unique.state
end
end
2019-03-24 17:13:56 -04:00
native_name { english_name }
2018-11-30 11:24:05 -05:00
end
end