summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/summary/defaults.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/cycle_analytics/summary/defaults.rb')
-rw-r--r--lib/gitlab/cycle_analytics/summary/defaults.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/gitlab/cycle_analytics/summary/defaults.rb b/lib/gitlab/cycle_analytics/summary/defaults.rb
new file mode 100644
index 00000000000..468494a8ab8
--- /dev/null
+++ b/lib/gitlab/cycle_analytics/summary/defaults.rb
@@ -0,0 +1,29 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module CycleAnalytics
+ module Summary
+ module Defaults
+ def identifier
+ self.class.name.demodulize.underscore.to_sym
+ end
+
+ # :nocov: the class including this concern is expected to test this method.
+ def title
+ raise NotImplementedError, "Expected #{self.name} to implement title"
+ end
+ # :nocov:
+
+ # :nocov: the class including this concern is expected to test this method.
+ def value
+ raise NotImplementedError, "Expected #{self.name} to implement value"
+ end
+ # :nocov:
+
+ def links
+ []
+ end
+ end
+ end
+ end
+end