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:
authorBob Van Landuyt <bob@vanlanduyt.co>2017-10-02 15:23:36 +0300
committerBob Van Landuyt <bob@vanlanduyt.co>2017-10-04 23:49:42 +0300
commitef043063f9d6f9f9482707d78214709b09620a78 (patch)
tree28666378774498ddd41821adce0e6ca02bcd363f /spec/models/concerns
parent6c2de364dd15536d6f004e588e895ad3313533a8 (diff)
Clean up public/private api of `GroupDescendant`
So only methods that are used elsewhere are public.
Diffstat (limited to 'spec/models/concerns')
-rw-r--r--spec/models/concerns/group_descendant_spec.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/spec/models/concerns/group_descendant_spec.rb b/spec/models/concerns/group_descendant_spec.rb
index b1578fc593e..f3a0c342d35 100644
--- a/spec/models/concerns/group_descendant_spec.rb
+++ b/spec/models/concerns/group_descendant_spec.rb
@@ -24,22 +24,6 @@ describe GroupDescendant, :nested_groups do
end
end
- describe '#parent' do
- it 'returns the correct parent' do
- expect(subsub_group.parent).to eq(subgroup)
- end
- end
-
- describe '#merge_hierarchy' do
- it 'combines hierarchies' do
- other_subgroup = create(:group, parent: parent)
-
- expected_hierarchy = { parent => [{ subgroup => subsub_group }, other_subgroup] }
-
- expect(subsub_group.merge_hierarchy(other_subgroup)).to eq(expected_hierarchy)
- end
- end
-
describe '.build_hierarchy' do
it 'combines hierarchies until the top' do
other_subgroup = create(:group, parent: parent)
@@ -97,22 +81,6 @@ describe GroupDescendant, :nested_groups do
end
end
- describe '#parent' do
- it 'returns the correct parent' do
- expect(project.parent).to eq(subsub_group)
- end
- end
-
- describe '#merge_hierarchy' do
- it 'combines hierarchies' do
- project = create(:project, namespace: parent)
-
- expected_hierarchy = { parent => [{ subgroup => subsub_group }, project] }
-
- expect(subsub_group.merge_hierarchy(project)).to eq(expected_hierarchy)
- end
- end
-
describe '.build_hierarchy' do
it 'combines hierarchies until the top' do
other_project = create(:project, namespace: parent)