debian-mirror-gitlab/spec/support/counter_attribute.rb

24 lines
665 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
RSpec.configure do |config|
config.before(:each, :counter_attribute) do
stub_const('CounterAttributeModel', Class.new(ProjectStatistics))
CounterAttributeModel.class_eval do
include CounterAttribute
2023-03-04 22:38:38 +05:30
after_initialize { self.allow_package_size_counter = true }
2020-10-24 23:57:45 +05:30
counter_attribute :build_artifacts_size
counter_attribute :commit_count
2023-03-04 22:38:38 +05:30
counter_attribute :packages_size, if: ->(instance) { instance.allow_package_size_counter }
2021-01-03 14:25:43 +05:30
2023-03-04 22:38:38 +05:30
attr_accessor :flushed, :allow_package_size_counter
2021-01-03 14:25:43 +05:30
2023-03-04 22:38:38 +05:30
counter_attribute_after_commit do |subject|
2021-01-03 14:25:43 +05:30
subject.flushed = true
end
2020-10-24 23:57:45 +05:30
end
end
end