Commit 1c931fb8 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

fix key observer tests

parent 299a9a10
......@@ -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
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment