blob: 817972bc42f416b343af26f35b877ddc52198502 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
;;; 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))
(require 'undercover)
(undercover "helpful.el"
(:exclude "*-test.el")
(:report-file "/tmp/undercover-report.json"))
;;; test-helper.el ends here
|