summaryrefslogtreecommitdiff
path: root/spec/helpers
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2017-05-12 13:33:26 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2017-05-12 15:16:25 +0300
commit1028e05378f1fd25b49d95f36cf577a2b819844d (patch)
treedd8be4f2a610fc1f344cef3950087248c2aebdcd /spec/helpers
parentf938f9441b908ed90c519f1ad208c68dcfb2dde2 (diff)
downloadgitlab-ce-1028e05378f1fd25b49d95f36cf577a2b819844d.tar.gz
Add parent full path to project list cache key
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/projects_helper_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/helpers/projects_helper_spec.rb b/spec/helpers/projects_helper_spec.rb
index be97973c693..ceabf0caf31 100644
--- a/spec/helpers/projects_helper_spec.rb
+++ b/spec/helpers/projects_helper_spec.rb
@@ -70,6 +70,12 @@ describe ProjectsHelper do
expect(helper.project_list_cache_key(project)).to include(project.namespace.cache_key)
end
+ it "includes the parent namespace in case of subgroup" do
+ project = create(:project, group: create(:group, :nested))
+
+ expect(helper.project_list_cache_key(project)).to include("parent/#{project.namespace.parent.path}")
+ end
+
it "includes the project" do
expect(helper.project_list_cache_key(project)).to include(project.cache_key)
end