This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/vendor/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/helpers.rb

9 lines
202 B
Ruby

module Shoulda # :nodoc:
module Helpers
# Prints a message to stdout, tagged with the name of the calling method.
def report!(msg = "")
puts("#{caller.first}: #{msg}")
end
end
end