fix key observer tests

This commit is contained in:
Dmitriy Zaporozhets 2013-01-28 23:03:38 +02:00
parent 299a9a1040
commit 1c931fb814
2 changed files with 3 additions and 9 deletions

View file

@ -15,7 +15,7 @@ class ProjectObserver < ActiveRecord::Observer
end
def after_create project
log_info("#{project.owner.name} created a new project \"#{project.name}\"")
log_info("#{project.owner.name} created a new project \"#{project.name_with_namespace}\"")
end
protected

View file

@ -9,25 +9,19 @@ describe KeyObserver do
is_deploy_key: false
)
@gitolite = double('Gitlab::Gitolite',
set_key: true,
remove_key: true
)
@observer = KeyObserver.instance
@observer.stub(gitolite: @gitolite)
end
context :after_save do
it do
@gitolite.should_receive(:set_key).with(@key.identifier, @key.key, @key.projects)
GitoliteWorker.should_receive(:perform_async).with(:set_key, @key.identifier, @key.key, @key.projects.map(&:id))
@observer.after_save(@key)
end
end
context :after_destroy do
it do
@gitolite.should_receive(:remove_key).with(@key.identifier, @key.projects)
GitoliteWorker.should_receive(:perform_async).with(:remove_key, @key.identifier, @key.projects.map(&:id))
@observer.after_destroy(@key)
end
end