Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.5 KiB

  1. ;;; test-simple-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "test-simple" "test-simple.el" (0 0 0 0))
  7. ;;; Generated autoloads from test-simple.el
  8. (autoload 'test-simple-start "test-simple" "\
  9. \(fn &optional TEST-START-MSG)" nil t)
  10. (autoload 'test-simple-clear "test-simple" "\
  11. Initialize and reset everything to run tests.
  12. You should run this before running any assertions. Running more than once
  13. clears out information from the previous run.
  14. \(fn &optional TEST-INFO TEST-START-MSG)" t nil)
  15. (autoload 'test-simple-run "test-simple" "\
  16. Register command line to run tests non-interactively and bind key to run test.
  17. After calling this function, you can run test by key specified by `test-simple-runner-key'.
  18. It is preferable to write at the first line of test files as a comment, e.g,
  19. ;;;; (test-simple-run \"emacs -batch -L %s -l %s\" (file-name-directory (locate-library \"test-simple.elc\")) buffer-file-name)
  20. Calling this function interactively, COMMAND-LINE-FORMATS is set above.
  21. \(fn &rest COMMAND-LINE-FORMATS)" t nil)
  22. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "test-simple" '("assert-" "end-tests" "note" "test-simple-")))
  23. ;;;***
  24. ;; Local Variables:
  25. ;; version-control: never
  26. ;; no-byte-compile: t
  27. ;; no-update-autoloads: t
  28. ;; coding: utf-8
  29. ;; End:
  30. ;;; test-simple-autoloads.el ends here