X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/a0983c1f79e5f5ce2ea01e7e47684b79c4742ea6..6578236b45ab6d68749e2430c73660d5a03c2e22:/packages/load-relative/test/test-file.el diff --git a/packages/load-relative/test/test-file.el b/packages/load-relative/test/test-file.el index d2be52f6b..db3db8ca9 100644 --- a/packages/load-relative/test/test-file.el +++ b/packages/load-relative/test/test-file.el @@ -1,4 +1,26 @@ +;;; test-file.el --- Simple test for load-relative + +;; Copyright (C) 2015 Free Software Foundation, Inc. + +;; 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 GNU Emacs. If not, see . + +;;; Commentary: + +;;; Code: + (load-file "../load-relative.el") + (require 'ert) @@ -34,3 +56,7 @@ (with-relative-file "simple.txt" (buffer-string))))) + +(provide 'test-file) + +;;; test-file.el ends here