Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-06-14 11:07:57 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-06-14 11:07:57 +0300
commitcbd6ca6985c1a7eefcfa5b3ca170fdf1865aee45 (patch)
treea7377d2854d457243000bd7062d027123aa1dfb2 /spec/models/ci/runner_spec.rb
parent53121601f38155e926eed300160f79dd4bc0768b (diff)
Rename specific_for to available_for:
Feedback from: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4093#note_12413950
Diffstat (limited to 'spec/models/ci/runner_spec.rb')
-rw-r--r--spec/models/ci/runner_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/models/ci/runner_spec.rb b/spec/models/ci/runner_spec.rb
index 9a6bc6b96c1..51e60ef8ada 100644
--- a/spec/models/ci/runner_spec.rb
+++ b/spec/models/ci/runner_spec.rb
@@ -259,7 +259,7 @@ describe Ci::Runner, models: true do
end
end
- describe '.specific_for' do
+ describe '.available_for' do
let(:runner) { create(:ci_runner) }
let(:project) { create(:project) }
let(:another_project) { create(:project) }
@@ -274,13 +274,13 @@ describe Ci::Runner, models: true do
end
context 'should not give owned runner' do
- subject { Ci::Runner.specific_for(project) }
+ subject { Ci::Runner.available_for(project) }
it { is_expected.to be_empty }
end
context 'should not give shared runner' do
- subject { Ci::Runner.specific_for(another_project) }
+ subject { Ci::Runner.available_for(another_project) }
it { is_expected.to be_empty }
end
@@ -288,13 +288,13 @@ describe Ci::Runner, models: true do
context 'with unlocked runner' do
context 'should not give owned runner' do
- subject { Ci::Runner.specific_for(project) }
+ subject { Ci::Runner.available_for(project) }
it { is_expected.to be_empty }
end
context 'should give a specific runner' do
- subject { Ci::Runner.specific_for(another_project) }
+ subject { Ci::Runner.available_for(another_project) }
it { is_expected.to contain_exactly(runner) }
end
@@ -306,13 +306,13 @@ describe Ci::Runner, models: true do
end
context 'should not give owned runner' do
- subject { Ci::Runner.specific_for(project) }
+ subject { Ci::Runner.available_for(project) }
it { is_expected.to be_empty }
end
context 'should not give a locked runner' do
- subject { Ci::Runner.specific_for(another_project) }
+ subject { Ci::Runner.available_for(another_project) }
it { is_expected.to be_empty }
end