module Shoulda::Helpers

def report!(msg = "")

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