]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/easy-kill/test.el
Merge branch 'master' of https://github.com/leoliu/easy-kill
[gnu-emacs-elpa] / packages / easy-kill / test.el
index 3c021d337c0848afebdd61f428f2726a7d16a164..6458d4cdc4a71d8180e8171a06811034bd4ceb94 100644 (file)
@@ -1,3 +1,25 @@
+;;; test.el --- tests for easy-kill                  -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
+;; Author: Leo Liu <sdl.web@gmail.com>
+;; Keywords: maint
+
+;; 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/>.
+
+;;; Code:
+
 (require 'easy-kill)
 (require 'ert)
 
@@ -407,3 +429,5 @@ some of the ways to customize it;
       (easy-kill-shrink)
       (should (= (mark t) (easy-kill-get start)))
       (should (= (point) (easy-kill-get end))))))
+
+;;; test.el ends here