test-helper.el 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ;;; test-helper.el --- -*- lexical-binding: t -*-
  2. ;; Copyright (C) 2015 Ryan C. Thompson
  3. ;; Filename: test-helper.el
  4. ;; Author: Ryan C. Thompson
  5. ;; Created: Sat Nov 21 15:27:00 2015 (-0800)
  6. ;; Version:
  7. ;; Package-Requires: ()
  8. ;; URL:
  9. ;; Keywords:
  10. ;; This file is NOT part of GNU Emacs.
  11. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  12. ;;
  13. ;;; Commentary:
  14. ;;
  15. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  16. ;;
  17. ;; This program is free software: you can redistribute it and/or modify
  18. ;; it under the terms of the GNU General Public License as published by
  19. ;; the Free Software Foundation, either version 3 of the License, or (at
  20. ;; your option) any later version.
  21. ;;
  22. ;; This program is distributed in the hope that it will be useful, but
  23. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  24. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  25. ;; General Public License for more details.
  26. ;;
  27. ;; You should have received a copy of the GNU General Public License
  28. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  29. ;;
  30. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  31. ;;
  32. ;;; Code:
  33. (require 'f)
  34. (defvar test-path
  35. (f-dirname (f-this-file)))
  36. (defvar code-path
  37. (f-parent test-path))
  38. (add-to-list 'load-path code-path)
  39. (require 'ido-completing-read+)
  40. (require 'ido-ubiquitous)
  41. (provide 'test-helper)
  42. ;;; test-helper.el ends here