class Guard::Compat::Test::Template::Session

def _watches

def _watches
  keys = @watches.keys
  fail ArgumentError, 'no watches!' if keys.empty?
  fail MultipleGuardNotImplemented if keys.size > 1
  key = keys.first
  fail GlobalWatchesNotImplemented if key.nil?
  @watches[key]
end