summaryrefslogtreecommitdiff
path: root/tests/lint.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-12-29 19:11:09 +0100
committerLudovic Courtès <ludo@gnu.org>2014-12-29 21:18:12 +0100
commit8b385969cf30c6646ec3cf78f1ee69e03029b7a1 (patch)
tree37adbcbc1570f90a46ed4765b81ace44448445c7 /tests/lint.scm
parent907c98acbbf533715983c61a1e53cb29a52c4bef (diff)
downloadpatches-8b385969cf30c6646ec3cf78f1ee69e03029b7a1.tar
patches-8b385969cf30c6646ec3cf78f1ee69e03029b7a1.tar.gz
tests: Factorize the 'dummy-package' macro.
* guix/tests.scm (dummy-package): New macro. * tests/lint.scm (dummy-package): Remove. * tests/packages.scm (dummy-package): Remove.
Diffstat (limited to 'tests/lint.scm')
-rw-r--r--tests/lint.scm7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/lint.scm b/tests/lint.scm
index 8ae129d9fe..e7e548b626 100644
--- a/tests/lint.scm
+++ b/tests/lint.scm
@@ -19,6 +19,7 @@
(define-module (test-packages)
+ #:use-module (guix tests)
#:use-module (guix build download)
#:use-module (guix build-system gnu)
#:use-module (guix packages)
@@ -105,12 +106,6 @@ requests."
(test-begin "lint")
-(define-syntax-rule (dummy-package name* extra-fields ...)
- (package extra-fields ... (name name*) (version "0") (source #f)
- (build-system gnu-build-system)
- (synopsis #f) (description #f)
- (home-page #f) (license #f) ))
-
(define (call-with-warnings thunk)
(let ((port (open-output-string)))
(parameterize ((guix-warning-port port))