summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-09-23 12:18:16 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-09-23 12:23:04 +0200
commit21dfaa000d0117fcf70ecd0578d4431362d5c2a1 (patch)
tree4d15b95fbb9223f20e1faa37c7609ebece154db1 /spec
parent64ec7a3e0e7eedf960e02910f7086e6757ce5cc7 (diff)
downloadgitlab-ce-21dfaa000d0117fcf70ecd0578d4431362d5c2a1.tar.gz
Show CI status on all pages where commits list is rendered
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index 2fcbd5ae108..ba57e31f7fe 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -401,4 +401,14 @@ describe Project do
it { should eq "http://localhost#{avatar_path}" }
end
end
+
+ describe :ci_commit do
+ let(:project) { create :project }
+ let(:ci_project) { create :ci_project, gl_project: project }
+ let(:commit) { create :ci_commit, project: ci_project }
+
+ before { project.create_gitlab_ci_service(active: true) }
+
+ it { expect(project.ci_commit(commit.sha)).to eq(commit) }
+ end
end