class Shoulda::Matchers::ActionController::SetTheFlashMatcher

def flash_description

def flash_description
  if flash.blank?
    'no flash was set'
  else
    "was #{flash.inspect}"
  end
end