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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 15:08:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 15:08:18 +0300
commitd00cd98a2b1b3f0899677f61257821c94cde8e31 (patch)
tree602dc6d5ca71906ff282d87808c0c1d04b853aeb /spec/factories
parentedf0e5b64384499283b406f9087e890ac4fad13f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/integrations.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/spec/factories/integrations.rb b/spec/factories/integrations.rb
index a927f0fb501..c3ae0279c05 100644
--- a/spec/factories/integrations.rb
+++ b/spec/factories/integrations.rb
@@ -90,10 +90,19 @@ FactoryBot.define do
end
end
+ factory :bamboo_integration, class: 'Integrations::Bamboo' do
+ project
+ active { true }
+ bamboo_url { 'https://bamboo.example.com' }
+ build_key { 'foo' }
+ username { 'mic' }
+ password { 'password' }
+ end
+
factory :drone_ci_integration, class: 'Integrations::DroneCi' do
project
active { true }
- drone_url { 'https://bamboo.example.com' }
+ drone_url { 'https://drone.example.com' }
token { 'test' }
end