Sha256: e995228f38d353ba8922f6b281228ff0176f7d6d225e51af56913dc090626797

Contents?: true

Size: 1.76 KB

Versions: 16

Compression:

Stored size: 1.76 KB

Contents

# frozen_string_literal: true

shared_examples "amendment promoted event" do
  include_context "when a simple event"

  let(:resource) { emendation }
  let(:event_name) { "decidim.events.amendments.amendment_promoted" }

  it_behaves_like "a simple event"

  let(:amendable_title) { amendable.title }
  let(:emendation_author_nickname) { "@#{emendation.creator_author.nickname}" }
  let(:emendation_path) { Decidim::ResourceLocatorPresenter.new(emendation).path }
  let(:emendation_author_path) { Decidim::UserPresenter.new(emendation.creator_author).profile_path }
  let(:amendable_path) { Decidim::ResourceLocatorPresenter.new(amendable).path }

  describe "email_subject" do
    it "is generated correctly" do
      expect(subject.email_subject).to eq("An amendment from #{emendation_author_nickname} has been published as a new proposal")
    end
  end

  describe "email_intro" do
    it "is generated correctly" do
      expect(subject.email_intro)
        .to eq("A rejected amendment for #{amendable_title} has been published as a new #{amendable_type}. You can see it from this page:")
    end
  end

  describe "email_outro" do
    it "is generated correctly" do
      expect(subject.email_outro)
        .to eq("You have received this notification because you are following #{amendable_title}. You can stop receiving notifications following the previous link.")
    end
  end

  describe "notification_title" do
    it "is generated correctly" do
      expect(subject.notification_title)
        .to eq("A <a href=\"#{emendation_path}\">rejected amendment</a> for <a href=\"#{amendable_path}\">#{amendable_title}</a> has been published as a new #{amendable_type} by <a href=\"#{emendation_author_path}\">#{emendation_author_nickname}</a>.") # rubocop:disable Layout/LineLength
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
decidim-core-0.26.0 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.26.0.rc2 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.26.0.rc1 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.2 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.1 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.0 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.0.rc4 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.0.rc3 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.0.rc2 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.25.0.rc1 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.24.3 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.24.2 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.24.1 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.24.0 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.24.0.rc2 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb
decidim-core-0.24.0.rc1 lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb