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