class Shoulda::Matchers::ActionController::SetSessionMatcher

@private

def [](key)

def [](key)
  underlying_matcher[key]
  self
end

def in_context(context)

def in_context(context)
  underlying_matcher.in_context(context)
  self
end

def initialize

def initialize
  store = SessionStore.new
  @underlying_matcher = SetSessionOrFlashMatcher.new(store)
end

def to(expected_value = nil, &block)

def to(expected_value = nil, &block)
  underlying_matcher.to(expected_value, &block)
  self
end