blob: b5d9e6320040c04b85bbe6e6410a2a2ea3012210 (
plain)
1
2
3
4
5
6
7
8
9
|
;;; 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
|