1
0
mirror of https://github.com/jojojames/evil-collection.git synced 2024-06-20 06:46:37 +02:00
evil-collection/test/test-helper.el
2017-11-20 23:18:01 -08:00

10 lines
342 B
EmacsLisp

;;; test-helper.el --- Helpers for evil-collection-test.el -*- lexical-binding: t -*-
(require 'ert)
;; FIXME: Adding `f' as a dependency just for this line.
(require 'f)
(let ((evil-collection-dir (f-parent (f-dirname (f-this-file)))))
(add-to-list 'load-path evil-collection-dir))
(require 'evil-collection)
;;; test-helper.el ends here