2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
RSpec::Matchers.define :rate_limit do |attribute|
|
2023-01-09 11:18:21 +00:00
|
|
|
match { |model| model.class.include? RateLimiter::OnCreateRecord }
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|