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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-09-01 14:03:43 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-09-01 14:04:08 +0300
commitfc4fb6e4d212d5cf406a08c96ba8c423477a5408 (patch)
tree058147ce1ca9636defb733d076a4c25be4995fd1 /spec/models/ci
parent73d0cafbe4acf5a14ec196c3cfb38be4e84b67d9 (diff)
Change CI/CD kubernetes policy keyword to `active`
Diffstat (limited to 'spec/models/ci')
-rw-r--r--spec/models/ci/pipeline_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/ci/pipeline_spec.rb b/spec/models/ci/pipeline_spec.rb
index cf4896ff188..84656ffe0b9 100644
--- a/spec/models/ci/pipeline_spec.rb
+++ b/spec/models/ci/pipeline_spec.rb
@@ -547,7 +547,7 @@ describe Ci::Pipeline, :mailer do
end
describe '#has_kubernetes_active?' do
- context 'when kubernetes is configured' do
+ context 'when kubernetes is active' do
let(:project) { create(:kubernetes_project) }
it 'returns true' do
@@ -555,7 +555,7 @@ describe Ci::Pipeline, :mailer do
end
end
- context 'when kubernetes is not configured' do
+ context 'when kubernetes is not active' do
it 'returns false' do
expect(pipeline).not_to have_kubernetes_active
end