class Shoulda::Matchers::ActionController::SetSessionMatcher

def result

def result
  if session.empty?
    "no session variables were set"
  else
    "the session was #{session.inspect}"
  end
end