Sha256: b5cc40e4f2c03b904a23fe0e278dc31af30bfda5938905355f7e5dcd8cc95a3d

Contents?: true

Size: 1.43 KB

Versions: 8

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

RSpec.shared_context "feature" do
  include Decidim::FeaturePathHelper

  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 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

8 entries across 8 versions & 2 rubygems

Version Path
decidim-dev-0.4.1 lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-dev-0.4.3 lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-0.4.3 decidim-dev/lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-dev-0.4.2 lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-0.4.2 decidim-dev/lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-0.4.1 decidim-dev/lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-dev-0.4.0 lib/decidim/dev/test/rspec_support/feature_context.rb
decidim-0.4.0 decidim-dev/lib/decidim/dev/test/rspec_support/feature_context.rb