Sha256: 87c2f6fa4dc0062ddca88f9d41ca07fcd8dc35e8b31dcc8e7dd2e42cc2722ff8

Contents?: true

Size: 1.53 KB

Versions: 20

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

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

  let(:resource) { amendable }
  let(:event_name) { "decidim.events.amendments.amendment_created" }
  let!(:extra) do
    {
      amendment_id: amendment.id
    }
  end

  it_behaves_like "a simple event"

  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("New amendment for #{amendable_title}")
    end
  end

  describe "email_intro" do
    it "is generated correctly" do
      expect(subject.email_intro)
        .to eq("A new amendment has been created for #{amendable_title}. 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 new amendment has been created for <a href=\"#{amendable_path}\">#{amendable_title}</a>.")
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
decidim-core-0.26.10 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.9 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.28.0 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.5 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.28.0.rc5 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.28.0.rc4 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.8 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.4 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.3 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.7 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.5 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.2 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.1 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.4 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.0 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.3 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.0.rc2 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.27.0.rc1 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.2 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb
decidim-core-0.26.1 lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb