summaryrefslogtreecommitdiff
path: root/spec/models/ci/pipeline_spec.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-09-01 13:03:43 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-09-01 13:04:08 +0200
commitfc4fb6e4d212d5cf406a08c96ba8c423477a5408 (patch)
tree058147ce1ca9636defb733d076a4c25be4995fd1 /spec/models/ci/pipeline_spec.rb
parent73d0cafbe4acf5a14ec196c3cfb38be4e84b67d9 (diff)
downloadgitlab-ce-fc4fb6e4d212d5cf406a08c96ba8c423477a5408.tar.gz
Change CI/CD kubernetes policy keyword to `active`
Diffstat (limited to 'spec/models/ci/pipeline_spec.rb')
-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