test-helper.el 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7. ;;
  8. ;; This program is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or (at
  11. ;; your option) any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful, but
  14. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. ;; General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  20. ;;
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;;
  23. ;;; Code:
  24. (require 'f)
  25. (defvar test-path
  26. (f-dirname (f-this-file)))
  27. (defvar code-path
  28. (f-parent test-path))
  29. (add-to-list 'load-path code-path)
  30. (require 'ido-completing-read+)
  31. (require 'ido-ubiquitous)
  32. ;;; test-helper.el ends here