diff --git a/test.el b/test.el index 3c021d3..6458d4c 100644 --- a/test.el +++ b/test.el @@ -1,3 +1,25 @@ +;;; test.el --- tests for easy-kill -*- lexical-binding: t; -*- + +;; Copyright (C) 2014 Free Software Foundation, Inc. + +;; Author: Leo Liu +;; 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 . + +;;; 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