1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/lib/shoulda/matchers/warn.rb

9 lines
150 B
Ruby
Raw Normal View History

module Shoulda
module Matchers
# @private
def self.warn(msg)
Kernel.warn "Warning from shoulda-matchers:\n\n#{msg}"
end
end
end