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/lib/gitlab/hook_data/group_builder_spec.rb')
-rw-r--r--spec/lib/gitlab/hook_data/group_builder_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/lib/gitlab/hook_data/group_builder_spec.rb b/spec/lib/gitlab/hook_data/group_builder_spec.rb
index d7347ff99d4..4e6152390a4 100644
--- a/spec/lib/gitlab/hook_data/group_builder_spec.rb
+++ b/spec/lib/gitlab/hook_data/group_builder_spec.rb
@@ -38,6 +38,7 @@ RSpec.describe Gitlab::HookData::GroupBuilder do
let(:event) { :create }
it { expect(event_name).to eq('group_create') }
+
it_behaves_like 'includes the required attributes'
it_behaves_like 'does not include old path attributes'
end
@@ -46,6 +47,7 @@ RSpec.describe Gitlab::HookData::GroupBuilder do
let(:event) { :destroy }
it { expect(event_name).to eq('group_destroy') }
+
it_behaves_like 'includes the required attributes'
it_behaves_like 'does not include old path attributes'
end
@@ -54,6 +56,7 @@ RSpec.describe Gitlab::HookData::GroupBuilder do
let(:event) { :rename }
it { expect(event_name).to eq('group_rename') }
+
it_behaves_like 'includes the required attributes'
it 'includes old path details' do