Variable: ert--test-buffers

ert--test-buffers is a variable defined in ert-x.el.gz.

Value

#s(hash-table size 65 test eql weakness key-and-value rehash-size 1.5 rehash-threshold 0.8125 data
	      ())

Documentation

Table of all test buffers. Keys are the buffer objects, values are t.

The main use of this table is for ert-kill-all-test-buffers. Not all buffers in this table are necessarily live, but all live test buffers are in this table.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert-x.el.gz
(defvar ert--test-buffers (make-hash-table :weakness t)
  "Table of all test buffers.  Keys are the buffer objects, values are t.

The main use of this table is for `ert-kill-all-test-buffers'.
Not all buffers in this table are necessarily live, but all live
test buffers are in this table.")