aboutsummaryrefslogtreecommitdiff
path: root/test/test-helper.el
blob: 4a57855e4c393f4ebbbb578b9f59c615b42f5af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; test-helper.el --- Helper for tests              -*- lexical-binding: t; -*-

;; Copyright (C) 2017 Wilfred Hughes

;; Author:  <me@wilfred.me.uk>

;;; Code:

(require 'ert)
(require 'f)

(let ((helpful-dir (f-parent (f-dirname (f-this-file)))))
  (add-to-list 'load-path helpful-dir))

;;; test-helper.el ends here