Skip to content

Commit

Permalink
Add support for code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienCassou committed May 20, 2017
1 parent 97ab59c commit c64aace
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/beginend-dired-test.el
Expand Up @@ -23,6 +23,8 @@

;;; Code:

(load "test/test-helper")

(require 'assess)
(require 'buttercup)

Expand Down
31 changes: 31 additions & 0 deletions test/test-helper.el
@@ -0,0 +1,31 @@
;;; test-helper.el --- Helper code for beginend tests -*- lexical-binding: t; -*-

;; Copyright (C) 2017 Damien Cassou

;; Author: Damien Cassou <damien@cassou.me>

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;;

;;; Code:

(declare-function undercover "undercover")

(when (require 'undercover nil t)
(undercover "*.el"))

;;; test-helper.el ends here

0 comments on commit c64aace

Please sign in to comment.