Sha256: 79726f276e33bdf1a4063b0dc4d5f3dea957d7c846ce4c251492f06a72a62c6c

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

# -*- coding: utf-8 -*-
# frozen_string_literal: true
require "spec_helper"

module Decidim
  module Comments
    describe CommentNotificationMailer, type: :mailer do
      let(:commentable) { create(:dummy_resource) }
      let(:comment) { create(:comment, commentable: commentable) }
      let(:reply) { create(:comment, commentable: comment) }

      describe "comment_created" do
        let(:mail) { described_class.comment_created(user, comment, commentable) }

        let(:subject) { "Tens un nou comentari" }
        let(:default_subject) { "You have a new comment" }

        let(:body) { "Hi ha un nou comentari d" }
        let(:default_body) { "There is a new comment" }

        include_examples "localised email"
      end

      describe "reply_created" do
        let(:mail) { described_class.reply_created(user, reply, comment, commentable) }

        let(:subject) { "Tens una nova resposta del teu comentari" }
        let(:default_subject) { "You have a new reply of your comment" }

        let(:body) { "Hi ha una nova resposta de" }
        let(:default_body) { "There is a new reply of your comment" }

        include_examples "localised email"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
decidim-0.1.0 decidim-comments/spec/mailers/comment_notification_mailer_spec.rb