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:
Diffstat (limited to 'spec/models/concerns/integrations/has_web_hook_spec.rb')
-rw-r--r--spec/models/concerns/integrations/has_web_hook_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/concerns/integrations/has_web_hook_spec.rb b/spec/models/concerns/integrations/has_web_hook_spec.rb
index 9061cb90f90..69617b29f12 100644
--- a/spec/models/concerns/integrations/has_web_hook_spec.rb
+++ b/spec/models/concerns/integrations/has_web_hook_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe Integrations::HasWebHook do
+RSpec.describe Integrations::HasWebHook, feature_category: :webhooks do
let(:integration_class) do
Class.new(Integration) do
include Integrations::HasWebHook
@@ -21,7 +21,7 @@ RSpec.describe Integrations::HasWebHook do
end
context 'when integration responds to enable_ssl_verification' do
- let(:integration) { build(:drone_ci_integration) }
+ let(:integration) { build(:drone_ci_integration, enable_ssl_verification: true) }
it { expect(integration.hook_ssl_verification).to eq true }
end