Sha256: f0aece262418fdb093b3b341d82d91089a4f09eebb867cd81ace30596eff034b

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

RSpec.shared_context "feature" do
  let(:manifest) { Decidim.find_feature_manifest(manifest_name) }

  let(:user) { create :user, :confirmed, organization: organization }

  let!(:organization) { create(:organization) }

  let(:participatory_process) do
    create(:participatory_process, :with_steps, organization: organization)
  end

  let!(:feature) do
    create(:feature,
           manifest: manifest,
           participatory_process: participatory_process)
  end

  let!(:category) { create :category, participatory_process: participatory_process }

  let!(:scope) { create :scope, organization: organization }

  before do
    switch_to_host(organization.host)
  end

  def visit_feature
    page.visit main_feature_path(feature)
  end
end

RSpec.shared_context "feature admin" do
  include_context "feature"

  let(:current_feature) { feature }

  let(:user) do
    create :user,
           :admin,
           :confirmed,
           organization: organization
  end

  before do
    login_as user, scope: :user
    visit_feature_admin
  end

  def visit_feature_admin
    visit manage_feature_path(feature)
  end
end

RSpec.shared_context "feature process admin" do
  include_context "feature admin"

  let(:user) do
    create :user,
           :process_admin,
           :confirmed,
           organization: organization,
           participatory_process: participatory_process
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
decidim-dev-0.4.4 lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-0.4.4 decidim-dev/lib/decidim/dev/test/rspec_support/feature_context.rb