25 lines
852 B
Ruby
25 lines
852 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Notifications::NewMention::Send, type: :service do
|
|
let(:user) { create(:user) }
|
|
let(:comment) { create(:comment, commentable: create(:article)) }
|
|
let(:mention) { create(:mention, mentionable: comment, user: user) }
|
|
|
|
it "creates a mention notification" do
|
|
expect do
|
|
described_class.call(mention)
|
|
end.to change(Notification, :count).by(1)
|
|
end
|
|
|
|
it "creates a correct mention notification" do
|
|
notification = described_class.call(mention)
|
|
expect(notification.user_id).to eq(user.id)
|
|
expect(notification.notifiable).to eq(mention)
|
|
expect(notification.json_data["comment"]["path"]).to eq(comment.path)
|
|
end
|
|
|
|
it "sends from proper mentioner" do
|
|
notification = described_class.call(mention)
|
|
expect(notification.json_data["user"]["id"]).to eq(comment.user_id)
|
|
end
|
|
end
|