[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] [patch][test] Add missing FSF / author headers / org-test dependency
From: |
Martyn Jago |
Subject: |
[O] [patch][test] Add missing FSF / author headers / org-test dependency to test files |
Date: |
Mon, 12 Sep 2011 17:11:44 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (darwin) |
Add missing FSF / author headers and org-test dependency to some test
files.
Best, Martyn
>From 39d437176f288d56dfdb2ccfabbfb712f9ce8504 Mon Sep 17 00:00:00 2001
From: Martyn Jago <address@hidden>
Date: Mon, 12 Sep 2011 17:07:21 +0100
Subject: [PATCH] Add missing FSF / author headers and org-test dependency to
some test files
* testing/lisp/test-ob-awk.el:
* testing/lisp/test-ob-fortran.el:
* testing/lisp/test-ob-lilypond.el:
* testing/lisp/test-ob.el:
* testing/lisp/test-org-exp.el:
Add missing FSF / author headers and org-test dependency to some test
files.
---
testing/lisp/test-ob-awk.el | 16 ++++++++++++++++
testing/lisp/test-ob-fortran.el | 16 ++++++++++++++++
testing/lisp/test-ob-lilypond.el | 19 +++++++++++++++++--
testing/lisp/test-ob.el | 1 -
testing/lisp/test-org-exp.el | 15 +++++++++++++++
5 files changed, 64 insertions(+), 3 deletions(-)
diff --git a/testing/lisp/test-ob-awk.el b/testing/lisp/test-ob-awk.el
index 018dec4..34752f5 100644
--- a/testing/lisp/test-ob-awk.el
+++ b/testing/lisp/test-ob-awk.el
@@ -1,3 +1,18 @@
+;;; test-ob-awk.el --- tests for ob-awk.el
+
+;; Copyright (c) 2010 Eric Schulte
+;; Authors: Eric Schulte
+
+;; Released under the GNU General Public License version 3
+;; see: http://www.gnu.org/licenses/gpl-3.0.html
+
+(let ((load-path (cons (expand-file-name
+ ".." (file-name-directory
+ (or load-file-name buffer-file-name)))
+ load-path)))
+ (require 'org-test)
+ (require 'org-test-ob-consts))
+
(require 'ob-awk)
(ert-deftest ob-awk/input-none ()
@@ -17,3 +32,4 @@
(org-test-at-id "9e998b2a-3581-43fe-b26d-07d3c507b86a"
(org-babel-next-src-block 3)
(should (= 150 (org-babel-execute-src-block)))))
+
diff --git a/testing/lisp/test-ob-fortran.el b/testing/lisp/test-ob-fortran.el
index c3bde0b..1b9fb75 100644
--- a/testing/lisp/test-ob-fortran.el
+++ b/testing/lisp/test-ob-fortran.el
@@ -1,3 +1,18 @@
+;;; test-ob-fortran.el --- tests for ob-fortran.el
+
+;; Copyright (c) 2010 Eric Schulte
+;; Authors: Eric Schulte
+
+;; Released under the GNU General Public License version 3
+;; see: http://www.gnu.org/licenses/gpl-3.0.html
+
+(let ((load-path (cons (expand-file-name
+ ".." (file-name-directory
+ (or load-file-name buffer-file-name)))
+ load-path)))
+ (require 'org-test)
+ (require 'org-test-ob-consts))
+
(let ((load-path (cons (expand-file-name
"langs"
(expand-file-name
@@ -11,6 +26,7 @@
(file-name-directory
(or load-file-name buffer-file-name)))))))
load-path)))
+
(require 'ob-fortran))
(ert-deftest ob-fortran/assert ()
diff --git a/testing/lisp/test-ob-lilypond.el b/testing/lisp/test-ob-lilypond.el
index 8469823..2ca0597 100644
--- a/testing/lisp/test-ob-lilypond.el
+++ b/testing/lisp/test-ob-lilypond.el
@@ -1,11 +1,26 @@
+;;; test-ob-lilypond.el --- tests for ob-lilypond.el
+
+;; Copyright (c) 2010 Martyn Jago
+;; Authors: Martyn Jago
+
+;; Released under the GNU General Public License version 3
+;; see: http://www.gnu.org/licenses/gpl-3.0.html
+
+(let ((load-path (cons (expand-file-name
+ ".." (file-name-directory
+ (or load-file-name buffer-file-name)))
+ load-path)))
+ (require 'org-test)
+ (require 'org-test-ob-consts))
+
+(require 'ob-lilypond)
+
(save-excursion
(set-buffer (get-buffer-create "test-ob-lilypond.el"))
(setq ly-here
(file-name-directory
(or load-file-name (buffer-file-name)))))
-(require 'ob-lilypond)
-
(ert-deftest ob-lilypond/assert ()
(should t))
diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el
index d516798..1ed9474 100644
--- a/testing/lisp/test-ob.el
+++ b/testing/lisp/test-ob.el
@@ -12,7 +12,6 @@
load-path)))
(require 'org-test)
(require 'org-test-ob-consts))
- (require 'org-test)
(ert-deftest test-org-babel/src-name-regexp ()
(should(equal "^[ \t]*#\\+\\(srcname\\|source\\|function\\):[ \t]*"
diff --git a/testing/lisp/test-org-exp.el b/testing/lisp/test-org-exp.el
index b7d7387..348538f 100644
--- a/testing/lisp/test-org-exp.el
+++ b/testing/lisp/test-org-exp.el
@@ -1,3 +1,18 @@
+;;; test-org-exp.el --- tests for org-exp.el
+
+;; Copyright (c) 2010 Eric Schulte
+;; Authors: Eric Schulte
+
+;; Released under the GNU General Public License version 3
+;; see: http://www.gnu.org/licenses/gpl-3.0.html
+
+(let ((load-path (cons (expand-file-name
+ ".." (file-name-directory
+ (or load-file-name buffer-file-name)))
+ load-path)))
+ (require 'org-test)
+ (require 'org-test-ob-consts))
+
(ert-deftest test-org-exp/stripping-commas ()
"Test the stripping of commas from within blocks during export."
(org-test-at-id "76d3a083-67fa-4506-a41d-837cc48158b5"
--
1.7.3.4
---
Org-mode version 7.7 (release_7.7.279.g39d43)
GNU Emacs 24.0.50.1 (x86_64-apple-darwin, NS apple-appkit-1038.35)
of 2011-08-21 on virtualmac.porkrind.org
- [O] [patch][test] Add missing FSF / author headers / org-test dependency to test files,
Martyn Jago <=