diff --git a/spec/lib/project_mover_spec.rb b/spec/lib/project_mover_spec.rb index 28323b24ef6d0d0cbe62ef4be7bd9387c56f41dc..9202befdcb2a83d5ba49a98b6d01c4a31670d044 100644 --- a/spec/lib/project_mover_spec.rb +++ b/spec/lib/project_mover_spec.rb @@ -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 diff --git a/spec/lib/shell_spec.rb b/spec/lib/shell_spec.rb index 1c546e59235a7d1fcfc65c9a4c1057891dea5c2d..3c04f4bbeb69746503d1893ced3dbc2acfa57674 100644 --- a/spec/lib/shell_spec.rb +++ b/spec/lib/shell_spec.rb @@ -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 diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb index 3dccb482375c9d4d230a1ddd85e04da4931b11ea..4b620a2fa3efddcbfdfbffacabac798923cf1062 100644 --- a/spec/models/project_spec.rb +++ b/spec/models/project_spec.rb @@ -66,11 +66,6 @@ describe Project do project.should_not be_valid project.errors[:base].first.should match(/Your own projects limit is 1/) end - - it "should not allow 'gitolite-admin' as repo name" do - should allow_value("blah").for(:path) - should_not allow_value("gitolite-admin").for(:path) - end end describe "Respond to" do @@ -91,7 +86,7 @@ describe Project do it "should return valid url to repo" do project = Project.new(path: "somewhere") - project.url_to_repo.should == Gitlab.config.gitolite.ssh_path_prefix + "somewhere.git" + project.url_to_repo.should == Gitlab.config.gitlab_shell.ssh_path_prefix + "somewhere.git" end it "returns the full web URL for this repo" do diff --git a/spec/observers/key_observer_spec.rb b/spec/observers/key_observer_spec.rb index 0a886a57afdd79b030a3ee8be98bd161a2c4ba55..e1412f52e83fe01183866e8b9e90327e9682a5ec 100644 --- a/spec/observers/key_observer_spec.rb +++ b/spec/observers/key_observer_spec.rb @@ -14,14 +14,14 @@ describe KeyObserver do context :after_save do it do - GitoliteWorker.should_receive(:perform_async).with(:add_key, @key.shell_id, @key.key) + GitlabShellWorker.should_receive(:perform_async).with(:add_key, @key.shell_id, @key.key) @observer.after_save(@key) end end context :after_destroy do it do - GitoliteWorker.should_receive(:perform_async).with(:remove_key, @key.shell_id, @key.key) + GitlabShellWorker.should_receive(:perform_async).with(:remove_key, @key.shell_id, @key.key) @observer.after_destroy(@key) end end diff --git a/spec/workers/post_receive_spec.rb b/spec/workers/post_receive_spec.rb index f1a69b1b2e4c7ac5999c620fedb695f6c0090ce3..d38cd59efa76e94599bb2af576839666d6c2dfff 100644 --- a/spec/workers/post_receive_spec.rb +++ b/spec/workers/post_receive_spec.rb @@ -39,6 +39,6 @@ describe PostReceive do end def pwd(project) - File.join(Gitlab.config.gitolite.repos_path, project.path_with_namespace) + File.join(Gitlab.config.gitlab_shell.repos_path, project.path_with_namespace) end end