summaryrefslogtreecommitdiff
path: root/spec/support/counter_attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/counter_attribute.rb')
-rw-r--r--spec/support/counter_attribute.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/support/counter_attribute.rb b/spec/support/counter_attribute.rb
index ea71b25b4c0..8bd40b72dcf 100644
--- a/spec/support/counter_attribute.rb
+++ b/spec/support/counter_attribute.rb
@@ -9,6 +9,12 @@ RSpec.configure do |config|
counter_attribute :build_artifacts_size
counter_attribute :commit_count
+
+ attr_accessor :flushed
+
+ counter_attribute_after_flush do |subject|
+ subject.flushed = true
+ end
end
end
end