org-mode/testing
Eric Schulte c9b017632e ob-sh: no longer fails on empty results
* lisp/ob-sh.el (org-babel-sh-evaluate): no longer assumes that
  results are non-nil
2010-10-15 09:25:33 -06:00
..
contrib/lisp ensure that the testing/contrib/lisp directory is created 2010-10-06 08:58:08 -06:00
ert@87b475f856 adding ERT and jump.el as git submodules 2010-10-05 11:54:48 -06:00
examples ob-tangle: only create links for blocks that will actually tangle 2010-10-14 17:15:11 -06:00
jump@0def544272 adding ERT and jump.el as git submodules 2010-10-05 11:54:48 -06:00
lisp ob-sh: no longer fails on empty results 2010-10-15 09:25:33 -06:00
README.org typo in testing/README.org, once again, thanks Nick Dokos 2010-10-06 09:04:06 -06:00
org-test-ob-consts.el ob-exp: fixed export when headings have links, with tests 2010-10-05 11:54:48 -06:00
org-test.el added tangle tests exercising new desired tangling behavior 2010-10-06 10:23:50 -06:00

README.org

Org-mode Testing

The following instructions describe how to get started using the Org-mode test framework.

  1. Install the ERT and jump.el testing dependencies which are included as git submodules in the org-mode repository. To do so run the following git submodule commands from inside the base of the Org-mode directory (or just execute the following code block).

      cd ..
      git submodule init
      git submodule update
  2. Load the org-test.el file

      (load-file "org-test.el")
  3. The org-test-jump command is now bound to M-C-j in all emacs-lisp files. Call this command from any file in the lisp/ directory of the org-mode repository to jump to the related test file in the testing/ directory. Call this functions with a prefix argument, and the corresponding test file will be stubbed out if it doesn't already exist.
  4. Review the ERT documentation, to do this run makeinfo in the testing/ert directory,

      cd ert
      makeinfo ert.texinfo

    then browse the resulting info file.

  5. A number of org-mode-specific functions and macros are provided in org-test.el see the ;;; Functions for Writing Tests subsection of that file. Some of these functions make use of example org-mode files located in the examples/ directory.
  6. Functions for loading and running the Org-mode tests are provided in the ;;; Load and Run Tests subsection, the most important of which are

    • org-test-load which loads the entire Org-mode test suite
    • org-test-current-defun which runs all tests for the current function around point (should be called from inside of an Org-mode elisp file)
    • org-test-run-all-tests which runs the entire Org-mode test suite
    • also note that the ert command can also be used to run tests