From 70b0f422b42af78f29bea167affe1d88ec350dd8 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 13 Dec 2012 17:24:19 +0100 Subject: [PATCH] Fix copyright notices for test files. --- testing/lisp/test-ob-C.el | 16 ++++++++++++++-- testing/lisp/test-ob-R.el | 16 ++++++++++++++-- testing/lisp/test-ob-awk.el | 16 ++++++++++++++-- testing/lisp/test-ob-emacs-lisp.el | 18 +++++++++++++++--- testing/lisp/test-ob-exp.el | 18 +++++++++++++++--- testing/lisp/test-ob-fortran.el | 16 ++++++++++++++-- testing/lisp/test-ob-lilypond.el | 16 ++++++++++++++-- testing/lisp/test-ob-lob.el | 18 ++++++++++++++---- testing/lisp/test-ob-maxima.el | 17 +++++++++++++++-- testing/lisp/test-ob-octave.el | 17 +++++++++++++++-- testing/lisp/test-ob-python.el | 16 ++++++++++++++-- testing/lisp/test-ob-sh.el | 18 ++++++++++++++++-- testing/lisp/test-ob-table.el | 18 +++++++++++++++--- testing/lisp/test-ob-tangle.el | 20 ++++++++++++++++---- testing/lisp/test-ob.el | 19 +++++++++++++++++-- testing/lisp/test-org-element.el | 2 ++ testing/lisp/test-org-exp.el | 16 ++++++++++++++-- testing/lisp/test-org-export.el | 16 ++++++++++++---- testing/lisp/test-org-html.el | 22 +++++++++++++++++----- testing/lisp/test-org-src.el | 5 ++++- testing/lisp/test-org-table.el | 20 ++++++++++++++++---- testing/lisp/test-org.el | 22 +++++++++++++++++----- testing/lisp/test-property-inheritance.el | 16 ++++++++++++++-- 23 files changed, 318 insertions(+), 60 deletions(-) diff --git a/testing/lisp/test-ob-C.el b/testing/lisp/test-ob-C.el index 5b5e0b42e..094566879 100644 --- a/testing/lisp/test-ob-C.el +++ b/testing/lisp/test-ob-C.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2010-2012 Sergey Litvinov ;; Authors: Sergey Litvinov -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (unless (featurep 'ob-C) diff --git a/testing/lisp/test-ob-R.el b/testing/lisp/test-ob-R.el index aec4dd035..eb8080a39 100644 --- a/testing/lisp/test-ob-R.el +++ b/testing/lisp/test-ob-R.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2011-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (org-test-for-executable "R") diff --git a/testing/lisp/test-ob-awk.el b/testing/lisp/test-ob-awk.el index d925b7b90..18b5ab74f 100644 --- a/testing/lisp/test-ob-awk.el +++ b/testing/lisp/test-ob-awk.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2010-2012 Sergey Litvinov ;; Authors: Sergey Litvinov -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (org-test-for-executable "awk") diff --git a/testing/lisp/test-ob-emacs-lisp.el b/testing/lisp/test-ob-emacs-lisp.el index f262ff747..7375e8be5 100644 --- a/testing/lisp/test-ob-emacs-lisp.el +++ b/testing/lisp/test-ob-emacs-lisp.el @@ -3,10 +3,22 @@ ;; Copyright (c) 2012 Free Software Foundation, Inc. ;; Authors: Eric Schulte, Martyn Jago -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . + +;;; Comments: ;; Org-mode tests for ob-emacs-lisp.el live here diff --git a/testing/lisp/test-ob-exp.el b/testing/lisp/test-ob-exp.el index 342ebed0b..13bf53d61 100644 --- a/testing/lisp/test-ob-exp.el +++ b/testing/lisp/test-ob-exp.el @@ -3,10 +3,22 @@ ;; Copyright (c) 2010-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . + +;;; Comments: ;; Template test file for Org-mode tests diff --git a/testing/lisp/test-ob-fortran.el b/testing/lisp/test-ob-fortran.el index c18cb64d1..c42eefca1 100644 --- a/testing/lisp/test-ob-fortran.el +++ b/testing/lisp/test-ob-fortran.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2010-2012 Sergey Litvinov ;; Authors: Sergey Litvinov -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (org-test-for-executable "gfortran") diff --git a/testing/lisp/test-ob-lilypond.el b/testing/lisp/test-ob-lilypond.el index 3e74a558d..85ce9f75b 100644 --- a/testing/lisp/test-ob-lilypond.el +++ b/testing/lisp/test-ob-lilypond.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2010-2012 Martyn Jago ;; Authors: Martyn Jago -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (unless (featurep 'ob-lilypond) diff --git a/testing/lisp/test-ob-lob.el b/testing/lisp/test-ob-lob.el index 2cb49ca28..4e4f0fed2 100644 --- a/testing/lisp/test-ob-lob.el +++ b/testing/lisp/test-ob-lob.el @@ -1,12 +1,22 @@ -;;; test-ob-lob.el +;;; test-ob-lob.el --- test for ob-lob.el ;; Copyright (c) 2010-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . ;;; Tests diff --git a/testing/lisp/test-ob-maxima.el b/testing/lisp/test-ob-maxima.el index 4c92af0de..abe843327 100644 --- a/testing/lisp/test-ob-maxima.el +++ b/testing/lisp/test-ob-maxima.el @@ -3,8 +3,21 @@ ;; Copyright (c) 2010-2012 Sergey Litvinov ;; Authors: Sergey Litvinov -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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 . + (org-test-for-executable "maxima") (unless (featurep 'ob-maxima) (signal 'missing-test-dependency "Support for Maxima code blocks")) diff --git a/testing/lisp/test-ob-octave.el b/testing/lisp/test-ob-octave.el index e642679f2..aff8e2b62 100644 --- a/testing/lisp/test-ob-octave.el +++ b/testing/lisp/test-ob-octave.el @@ -3,8 +3,21 @@ ;; Copyright (c) 2010-2012 Sergey Litvinov ;; Authors: Sergey Litvinov -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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 . + (org-test-for-executable "octave") (unless (featurep 'ob-octave) (signal 'missing-test-dependency "Support for Octave code blocks")) diff --git a/testing/lisp/test-ob-python.el b/testing/lisp/test-ob-python.el index d6a413333..0ac6b0e28 100644 --- a/testing/lisp/test-ob-python.el +++ b/testing/lisp/test-ob-python.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2011-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (org-test-for-executable "python") diff --git a/testing/lisp/test-ob-sh.el b/testing/lisp/test-ob-sh.el index 88e1c92b5..9c7b367be 100644 --- a/testing/lisp/test-ob-sh.el +++ b/testing/lisp/test-ob-sh.el @@ -3,8 +3,22 @@ ;; Copyright (c) 2010-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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 . + +;;; Comment: ;; Template test file for Org-mode tests diff --git a/testing/lisp/test-ob-table.el b/testing/lisp/test-ob-table.el index d25c7a1e8..e39cfeda8 100644 --- a/testing/lisp/test-ob-table.el +++ b/testing/lisp/test-ob-table.el @@ -3,10 +3,22 @@ ;; Copyright (c) 2011-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . + +;;; Comments: ;; Template test file for Org-mode tests diff --git a/testing/lisp/test-ob-tangle.el b/testing/lisp/test-ob-tangle.el index 17bb43311..d622e7808 100644 --- a/testing/lisp/test-ob-tangle.el +++ b/testing/lisp/test-ob-tangle.el @@ -1,12 +1,24 @@ -;;; test-ob-tangle.el +;;; test-ob-tangle.el --- tests for ob-tangle.el ;; Copyright (c) 2010-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . + +;;; Comments: ;; Template test file for Org-mode tests diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el index 08de70296..b2bea233c 100644 --- a/testing/lisp/test-ob.el +++ b/testing/lisp/test-ob.el @@ -3,8 +3,23 @@ ;; Copyright (c) 2010-2012 Eric Schulte ;; Authors: Eric Schulte, Martyn Jago -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: + (ert-deftest test-org-babel/multi-line-header-regexp () (should(equal "^[ \t]*#\\+headers?:[ \t]*\\([^\n]*\\)$" org-babel-multi-line-header-regexp)) diff --git a/testing/lisp/test-org-element.el b/testing/lisp/test-org-element.el index 38829d516..236db35f8 100644 --- a/testing/lisp/test-org-element.el +++ b/testing/lisp/test-org-element.el @@ -17,6 +17,8 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . +;;; Code: + (unless (featurep 'org-element) (signal 'missing-test-dependency "org-element")) diff --git a/testing/lisp/test-org-exp.el b/testing/lisp/test-org-exp.el index 1f0149922..2c4f586ed 100644 --- a/testing/lisp/test-org-exp.el +++ b/testing/lisp/test-org-exp.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2010-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (ert-deftest test-org-exp/stripping-commas () diff --git a/testing/lisp/test-org-export.el b/testing/lisp/test-org-export.el index 87fc306e9..562b251c2 100644 --- a/testing/lisp/test-org-export.el +++ b/testing/lisp/test-org-export.el @@ -4,13 +4,21 @@ ;; Author: Nicolas Goaziou -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments +;; 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: (unless (featurep 'org-export) diff --git a/testing/lisp/test-org-html.el b/testing/lisp/test-org-html.el index 74780bd4b..492c388e6 100644 --- a/testing/lisp/test-org-html.el +++ b/testing/lisp/test-org-html.el @@ -1,12 +1,24 @@ -;;; test-org-html.el +;;; test-org-html.el --- tests for org-html.el -;; Copyright (c) ߛ David Maus +;; Copyright (c) David Maus ;; Authors: David Maus -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . + +;;; Comments: ;; Template test file for Org-mode tests diff --git a/testing/lisp/test-org-src.el b/testing/lisp/test-org-src.el index 42b0f9e95..8205fd193 100644 --- a/testing/lisp/test-org-src.el +++ b/testing/lisp/test-org-src.el @@ -1,9 +1,11 @@ -;;; test-org-src.el --- Tests for org-src.el +;;; test-org-src.el --- tests for org-src.el ;; Copyright (C) 2012 Le Wang ;; Author: Le Wang +;; This file is not part of GNU Emacs. + ;; 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 @@ -17,6 +19,7 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . +;;; Code: (require 'org-test) diff --git a/testing/lisp/test-org-table.el b/testing/lisp/test-org-table.el index cdcc5dd0b..de5d5e9b0 100644 --- a/testing/lisp/test-org-table.el +++ b/testing/lisp/test-org-table.el @@ -1,10 +1,22 @@ -;;; test-org-table.el +;;; test-org-table.el --- tests for org-table.el -;; Copyright (c) ߛ David Maus +;; Copyright (c) David Maus ;; Authors: David Maus -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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 . ;;;; Comments: diff --git a/testing/lisp/test-org.el b/testing/lisp/test-org.el index 640244761..af43ac625 100644 --- a/testing/lisp/test-org.el +++ b/testing/lisp/test-org.el @@ -1,12 +1,24 @@ -;;; test-org.el +;;; test-org.el --- tests for org.el -;; Copyright (c) ߚ David Maus +;; Copyright (c) David Maus ;; Authors: David Maus -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. -;;;; Comments: +;; 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 . + +;;; Comments: ;; Template test file for Org-mode tests diff --git a/testing/lisp/test-property-inheritance.el b/testing/lisp/test-property-inheritance.el index a68d7c6aa..b8778a2db 100644 --- a/testing/lisp/test-property-inheritance.el +++ b/testing/lisp/test-property-inheritance.el @@ -3,8 +3,20 @@ ;; Copyright (c) 2011-2012 Eric Schulte ;; Authors: Eric Schulte -;; Released under the GNU General Public License version 3 -;; see: http://www.gnu.org/licenses/gpl-3.0.html +;; This file is not part of GNU Emacs. + +;; 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: (defmacro test-org-in-property-buffer (&rest body) -- 2.11.4.GIT