fixing tests after refactoring

This commit is contained in:
Dmitriy Zaporozhets 2013-02-11 20:28:27 +02:00
parent 2a1fac9e4f
commit ab0cfc0036
5 changed files with 7 additions and 12 deletions

View file

@ -7,7 +7,7 @@ describe Gitlab::ProjectMover do
FileUtils.rm_rf base_path if File.exists? base_path
FileUtils.mkdir_p base_path
Gitlab.config.gitolite.stub(repos_path: base_path)
Gitlab.config.gitlab_shell.stub(repos_path: base_path)
@project = create(:project)
end

View file

@ -2,7 +2,7 @@ require 'spec_helper'
describe Gitlab::Shell do
let(:project) { double('Project', id: 7, path: 'diaspora') }
let(:gitolite) { Gitlab::Shell.new }
let(:gitlab_shell) { Gitlab::Shell.new }
before do
Project.stub(find: project)
@ -13,5 +13,5 @@ describe Gitlab::Shell do
it { should respond_to :add_repository }
it { should respond_to :remove_repository }
it { gitolite.url_to_repo('diaspora').should == Gitlab.config.gitolite.ssh_path_prefix + "diaspora.git" }
it { gitlab_shell.url_to_repo('diaspora').should == Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git" }
end