summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/pipeline/common_spec.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-05 11:35:27 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-05 11:35:27 +0100
commitb86d8afe23524d10956cfbc1b87337fd2ce75e8c (patch)
treeee4d9ef71a31177164025eccb11e7bdd01105225 /spec/lib/gitlab/ci/status/pipeline/common_spec.rb
parentd55ff247569a2bf5c78c80f966a56b28d5c8332f (diff)
downloadgitlab-ce-b86d8afe23524d10956cfbc1b87337fd2ce75e8c.tar.gz
Fold core/extended status modules to reduce nesting
Diffstat (limited to 'spec/lib/gitlab/ci/status/pipeline/common_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/status/pipeline/common_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/status/pipeline/common_spec.rb b/spec/lib/gitlab/ci/status/pipeline/common_spec.rb
new file mode 100644
index 00000000000..21adee3f8e7
--- /dev/null
+++ b/spec/lib/gitlab/ci/status/pipeline/common_spec.rb
@@ -0,0 +1,23 @@
+require 'spec_helper'
+
+describe Gitlab::Ci::Status::Pipeline::Common do
+ let(:pipeline) { create(:ci_pipeline) }
+
+ subject do
+ Class.new(Gitlab::Ci::Status::Core)
+ .new(pipeline).extend(described_class)
+ end
+
+ it 'does not have action' do
+ expect(subject).not_to have_action
+ end
+
+ it 'has details' do
+ expect(subject).to have_details
+ end
+
+ it 'links to the pipeline details page' do
+ expect(subject.details_path)
+ .to include "pipelines/#{pipeline.id}"
+ end
+end