Sha256: b1d5d8f38a8964572455995fb3bc5befcbb6ca565afe4563b64648364d45f842
Contents?: true
Size: 1.7 KB
Versions: 5
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true require "decidim/faker/localized" require "decidim/dev" FactoryGirl.define do factory :accountability_feature, parent: :feature do name { Decidim::Features::Namer.new(participatory_space.organization.available_locales, :accountability).i18n_name } manifest_name :accountability participatory_space { create(:participatory_process, :with_steps, organization: organization) } settings do { intro: Decidim::Faker::Localized.wrapped("<p>", "</p>") { Decidim::Faker::Localized.sentence(4) }, categories_label: Decidim::Faker::Localized.word, subcategories_label: Decidim::Faker::Localized.word, heading_parent_level_results: Decidim::Faker::Localized.word, heading_leaf_level_results: Decidim::Faker::Localized.word } end end factory :status, class: Decidim::Accountability::Status do feature { create(:accountability_feature) } sequence(:key) { |n| "status_#{n}" } name { Decidim::Faker::Localized.word } description { Decidim::Faker::Localized.sentence(3) } progress { rand(1..100) } end factory :result, class: Decidim::Accountability::Result do feature { create(:accountability_feature) } title { Decidim::Faker::Localized.sentence(3) } description { Decidim::Faker::Localized.wrapped("<p>", "</p>") { Decidim::Faker::Localized.sentence(4) } } start_date { "12/7/2017" } end_date { "30/9/2017" } status { create :status, feature: feature } progress { rand(1..100) } end factory :timeline_entry, class: Decidim::Accountability::TimelineEntry do result { create(:result) } entry_date { "12/7/2017" } description { Decidim::Faker::Localized.sentence(2) } end end
Version data entries
5 entries across 5 versions & 1 rubygems