summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--bug-hunter-test.el27
2 files changed, 27 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index c345a6d..a2791fe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
+/bug-hunter-autoloads.el
+/bug-hunter-pkg.el
/bug-hunter-test-dummy-file
*.elc
/.cask/
diff --git a/bug-hunter-test.el b/bug-hunter-test.el
index ab886be..6a05162 100644
--- a/bug-hunter-test.el
+++ b/bug-hunter-test.el
@@ -1,4 +1,27 @@
-(unless (bound-and-true-p package--initialized)
+;;; bug-hunter-test.el --- -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2015-2020 Free Software Foundation, Inc.
+
+;; Author: Artur Malabarba <emacs@endlessparentheses.com>
+;; URL: https://github.com/Malabarba/elisp-bug-hunter
+;; Version: 1.3.1
+;; Keywords: lisp
+;; Package-Requires: ((seq "1.3") (cl-lib "0.5"))
+
+;; 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/>.
+
+(unless (bound-and-true-p package--initialized) ;; FIXME: Too lax!
(setq
package-user-dir (expand-file-name
(format ".cask/%s/elpa" emacs-version)
@@ -7,7 +30,7 @@
(package-initialize))
(require 'ert)
-(require 'cl)
+;; (require 'cl-lib)
(require 'bug-hunter)
;; (fset 'bug-hunter--report #'ignore)
;; (fset 'bug-hunter--report-end #'ignore)