diff options
author | Adam Niedzielski <adamsunday@gmail.com> | 2016-12-21 16:21:55 +0100 |
---|---|---|
committer | Adam Niedzielski <adamsunday@gmail.com> | 2016-12-21 16:21:55 +0100 |
commit | 9809a9af8a3980f8a65262295cfd9701e793ac11 (patch) | |
tree | 7f7f392a203798b2cbebba6c08f8875c433ca4f0 /spec/models/project_spec.rb | |
parent | 528c3e2b8d2d65257e489601220f34b918b80e17 (diff) | |
download | gitlab-ce-adam-auto-deploy.tar.gz |
Introduce "Set up autodeploy" button to help configure GitLab CI for deploymentadam-auto-deploy
The button allows to choose a ".gitlab-ci.yml" template that automatically
sets up the deployment of an application.
The currently supported template is Kubernetes template.
Diffstat (limited to 'spec/models/project_spec.rb')
-rw-r--r-- | spec/models/project_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb index 88d5d14f855..8be99bbf3ee 100644 --- a/spec/models/project_spec.rb +++ b/spec/models/project_spec.rb @@ -1719,7 +1719,7 @@ describe Project, models: true do end context 'when project has a deployment service' do - let(:project) { create(:kubernetes_project) } + let(:project) { create(:empty_project, :kubernetes) } it 'returns variables from this service' do expect(project.deployment_variables).to include( |