Send notification on update UserProject relation (access changed)

This commit is contained in:
Alex Denisov 2012-08-27 00:32:03 +03:00
parent aaeb37419a
commit 3c96d1f0e1
3 changed files with 20 additions and 3 deletions

View file

@ -6,8 +6,8 @@ describe UsersProjectObserver do
code: "Fuu",
path: "Fuu" ) }
let(:users_project) { Factory.create(:users_project,
project: project,
user: user )}
project: project,
user: user )}
subject { UsersProjectObserver.instance }
describe "#after_create" do
@ -24,4 +24,17 @@ describe UsersProjectObserver do
subject.after_create(users_project)
end
end
describe "#after_update" do
it "should called when UsersProject updated" do
subject.should_receive(:after_update)
UsersProject.observers.enable :users_project_observer do
users_project.update_attribute(:project_access, 40)
end
end
it "should send email to user" do
Notify.should_receive(:project_access_granted_email).with(users_project.id).and_return(double(deliver: true))
subject.after_update(users_project)
end
end
end