gitlab-org--gitlab-foss/spec/models/group_member_spec.rb

45 lines
1.4 KiB
Ruby
Raw Normal View History

2013-06-19 12:40:33 +00:00
# == Schema Information
#
# Table name: group_members
2013-06-19 12:40:33 +00:00
#
2013-08-21 09:34:02 +00:00
# id :integer not null, primary key
# access_level :integer not null
2013-08-21 09:34:02 +00:00
# group_id :integer not null
# user_id :integer not null
# created_at :datetime
# updated_at :datetime
2013-08-21 09:34:02 +00:00
# notification_level :integer default(3), not null
2013-06-19 12:40:33 +00:00
#
require 'spec_helper'
describe GroupMember do
2014-06-17 18:36:40 +00:00
context 'notification' do
describe "#after_create" do
it "should send email to user" do
membership = build(:group_member)
2014-06-17 18:36:40 +00: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
@membership = create :group_member
2014-06-17 18:36:40 +00:00
@membership.stub(notification_service: double('NotificationService').as_null_object)
end
it "should send email to user" do
@membership.should_receive(:notification_service)
@membership.update_attribute(:access_level, GroupMember::MASTER)
2014-06-17 18:36:40 +00:00
end
it "does not send an email when the access level has not changed" do
@membership.should_not_receive(:notification_service)
@membership.update_attribute(:access_level, GroupMember::OWNER)
2014-06-17 18:36:40 +00:00
end
end
end
end