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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-05 13:35:27 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-05 13:35:27 +0300
commitb86d8afe23524d10956cfbc1b87337fd2ce75e8c (patch)
treeee4d9ef71a31177164025eccb11e7bdd01105225 /spec/lib/gitlab/ci/status/extended_spec.rb
parentd55ff247569a2bf5c78c80f966a56b28d5c8332f (diff)
Fold core/extended status modules to reduce nesting
Diffstat (limited to 'spec/lib/gitlab/ci/status/extended_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/status/extended_spec.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/status/extended_spec.rb b/spec/lib/gitlab/ci/status/extended_spec.rb
new file mode 100644
index 00000000000..120e121aae5
--- /dev/null
+++ b/spec/lib/gitlab/ci/status/extended_spec.rb
@@ -0,0 +1,12 @@
+require 'spec_helper'
+
+describe Gitlab::Ci::Status::Extended do
+ subject do
+ Class.new.extend(described_class)
+ end
+
+ it 'requires subclass to implement matcher' do
+ expect { subject.matches?(double) }
+ .to raise_error(NotImplementedError)
+ end
+end