Skip to content
Snippets Groups Projects
Commit 1c931fb8 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

fix key observer tests

parent 299a9a10
No related branches found
No related tags found
2 merge requests!2940Expanding repos and hooks paths in settings,!2770Capistrano deploy
Loading
Loading
@@ -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
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment