2013-06-19 08:40:33 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2014-10-09 11:22:20 -04:00
|
|
|
# Table name: members
|
2013-06-19 08:40:33 -04:00
|
|
|
#
|
2013-08-21 05:34:02 -04:00
|
|
|
# id :integer not null, primary key
|
2014-09-15 04:36:50 -04:00
|
|
|
# access_level :integer not null
|
2014-10-09 11:22:20 -04:00
|
|
|
# source_id :integer not null
|
|
|
|
# source_type :string(255) not null
|
2013-08-21 05:34:02 -04:00
|
|
|
# user_id :integer not null
|
2014-10-09 11:22:20 -04:00
|
|
|
# notification_level :integer not null
|
|
|
|
# type :string(255)
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-06-19 08:40:33 -04:00
|
|
|
#
|
|
|
|
|
2013-06-17 06:07:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2014-09-14 12:32:51 -04:00
|
|
|
describe GroupMember do
|
2014-06-17 14:36:40 -04:00
|
|
|
context 'notification' do
|
|
|
|
describe "#after_create" do
|
|
|
|
it "should send email to user" do
|
2014-09-15 04:36:50 -04:00
|
|
|
membership = build(:group_member)
|
2014-06-17 14:36:40 -04:00
|
|
|
membership.stub(notification_service: double('NotificationService').as_null_object)
|
|
|
|
membership.should_receive(:notification_service)
|
|
|
|
membership.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#after_update" do
|
|
|
|
before do
|
2014-09-15 04:36:50 -04:00
|
|
|
@membership = create :group_member
|
2014-06-17 14:36:40 -04:00
|
|
|
@membership.stub(notification_service: double('NotificationService').as_null_object)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should send email to user" do
|
|
|
|
@membership.should_receive(:notification_service)
|
2014-09-15 04:36:50 -04:00
|
|
|
@membership.update_attribute(:access_level, GroupMember::MASTER)
|
2014-06-17 14:36:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not send an email when the access level has not changed" do
|
|
|
|
@membership.should_not_receive(:notification_service)
|
2014-09-15 04:36:50 -04:00
|
|
|
@membership.update_attribute(:access_level, GroupMember::OWNER)
|
2014-06-17 14:36:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-06-17 06:07:16 -04:00
|
|
|
end
|