Sha256: 88ddda736ff38fe62582cae2a55cddaa73b351b4139757bd8d20b1be1d1b881a
Contents?: true
Size: 670 Bytes
Versions: 9
Compression:
Stored size: 670 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe "Comments", type: :feature, perform_enqueued: true do let!(:feature) { create(:result_feature, organization: organization) } let!(:participatory_space) { feature.participatory_space } let!(:participatory_process_admin) do user = create(:user, :confirmed, organization: organization) Decidim::ParticipatoryProcessUserRole.create!( role: :admin, user: user, participatory_process: participatory_space ) user end let!(:commentable) { create(:result, feature: feature) } let(:resource_path) { resource_locator(commentable).path } include_examples "comments" end
Version data entries
9 entries across 9 versions & 1 rubygems