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:
authorYorick Peterse <yorickpeterse@gmail.com>2017-03-16 15:09:52 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2017-03-16 15:09:52 +0300
commitabb5f765c1e1affe0e132c86811e356e4a7008c9 (patch)
tree815fbaa397217d82d82cae996498617494aee8e2 /spec/helpers/ci_status_helper_spec.rb
parent8c5a3ffe9d29767eaf2e75038056efe29579b7bf (diff)
parent7d5b8993f47f02488cb37811719193d4ecb45e0a (diff)
Merge branch '27376-cache-default-branch-pipeline-on-project' into 'master'
Speed up several project lists See merge request !9903
Diffstat (limited to 'spec/helpers/ci_status_helper_spec.rb')
-rw-r--r--spec/helpers/ci_status_helper_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/helpers/ci_status_helper_spec.rb b/spec/helpers/ci_status_helper_spec.rb
index 637b02d9388..174cc84a97b 100644
--- a/spec/helpers/ci_status_helper_spec.rb
+++ b/spec/helpers/ci_status_helper_spec.rb
@@ -16,4 +16,11 @@ describe CiStatusHelper do
helper.ci_icon_for_status(failed_commit.status)
end
end
+
+ describe "#pipeline_status_cache_key" do
+ it "builds a cache key for pipeline status" do
+ pipeline_status = Ci::PipelineStatus.new(build(:project), sha: "123abc", status: "success")
+ expect(helper.pipeline_status_cache_key(pipeline_status)).to eq("pipeline-status/123abc-success")
+ end
+ end
end