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/relation_statuses.rb

126 lines
3.6 KiB
Ruby
Raw Normal View History

2019-09-21 10:37:06 -04:00
# frozen_string_literal: true
FactoryBot.define do
factory :some_relation_status, class: RelationStatus do
association :org_unit_kind, factory: :some_children_org_unit_kind
2019-09-21 10:37:06 -04:00
codename { Faker::Internet.unique.username 3..36, %w[_] }
name { Faker::Company.unique.name }
end
2019-10-02 08:54:12 -04:00
2019-10-02 09:43:55 -04:00
factory :included_relation_status, class: RelationStatus do
2019-10-02 08:54:12 -04:00
initialize_with do
RelationStatus.find_or_initialize_by codename: codename
end
2019-10-02 09:43:55 -04:00
codename { :included }
name { 'Член или сторонник' }
2019-10-02 08:54:12 -04:00
2019-10-02 09:43:55 -04:00
association :org_unit_kind, factory: :lpr_org_unit_kind
2019-10-02 08:54:12 -04:00
end
factory :exited_supporter_relation_status,
2019-10-02 09:43:55 -04:00
parent: :included_relation_status do
2019-10-02 08:54:12 -04:00
codename { :exited_supporter }
name { 'Вышедший сторонник' }
association :org_unit_kind, factory: :lpr_org_unit_kind
end
factory :exited_member_relation_status,
2019-10-02 09:43:55 -04:00
parent: :included_relation_status do
2019-10-02 08:54:12 -04:00
codename { :exited_member }
name { 'Вышедший член' }
association :org_unit_kind, factory: :lpr_org_unit_kind
end
factory :excluded_supporter_relation_status,
2019-10-02 09:43:55 -04:00
parent: :included_relation_status do
2019-10-02 08:54:12 -04:00
codename { :excluded_supporter }
name { 'Исключённый сторонник' }
association :org_unit_kind, factory: :lpr_org_unit_kind
end
factory :excluded_member_relation_status,
2019-10-02 09:43:55 -04:00
parent: :included_relation_status do
2019-10-02 08:54:12 -04:00
codename { :excluded_member }
name { 'Исключённый член' }
association :org_unit_kind, factory: :lpr_org_unit_kind
end
2019-10-02 09:43:55 -04:00
factory :supporter_relation_status,
parent: :included_relation_status do
codename { :supporter }
name { 'Сторонник' }
association :org_unit_kind, factory: :reg_dept_org_unit_kind
end
factory :active_member_relation_status,
parent: :supporter_relation_status do
codename { :active_member }
name { 'Член' }
association :org_unit_kind, factory: :reg_dept_org_unit_kind
end
factory :pending_member_relation_status,
parent: :supporter_relation_status do
codename { :pending_member }
name { 'Приостановленный член' }
association :org_unit_kind, factory: :reg_dept_org_unit_kind
end
factory :fed_secretary_relation_status,
parent: :supporter_relation_status do
2019-10-02 08:54:12 -04:00
codename { :fed_secretary }
name { 'Федеральный секретарь' }
association :org_unit_kind, factory: :fed_management_org_unit_kind
end
2019-10-02 09:43:55 -04:00
factory :reg_secretary_relation_status,
parent: :supporter_relation_status do
2019-10-02 08:54:12 -04:00
codename { :reg_secretary }
name { 'Секретарь РК РО' }
association :org_unit_kind, factory: :reg_management_org_unit_kind
end
2019-10-02 09:43:55 -04:00
factory :fed_manager_relation_status,
parent: :supporter_relation_status do
2019-10-02 08:54:12 -04:00
codename { :fed_manager }
name { 'Член ФК' }
association :org_unit_kind, factory: :fed_management_org_unit_kind
end
2019-10-02 09:43:55 -04:00
factory :reg_manager_relation_status,
parent: :supporter_relation_status do
2019-10-02 08:54:12 -04:00
codename { :reg_manager }
name { 'Член РК РО' }
association :org_unit_kind, factory: :reg_management_org_unit_kind
end
2019-10-02 09:43:55 -04:00
factory :fed_supervisor_relation_status,
parent: :supporter_relation_status do
2019-10-02 08:54:12 -04:00
codename { :fed_supervisor }
name { 'Член ЦКРК' }
association :org_unit_kind, factory: :fed_supervision_org_unit_kind
end
2019-10-02 09:43:55 -04:00
factory :reg_supervisor_relation_status,
parent: :supporter_relation_status do
2019-10-02 08:54:12 -04:00
codename { :reg_supervisor }
name { 'Член РКРК' }
association :org_unit_kind, factory: :reg_supervision_org_unit_kind
end
2019-09-21 10:37:06 -04:00
end