guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/21: gnu: Add perl-test-files.


From: Ben Woodcroft
Subject: 10/21: gnu: Add perl-test-files.
Date: Mon, 8 Aug 2016 12:08:59 +0000 (UTC)

benwoodcroft pushed a commit to branch master
in repository guix.

commit f82cef25cae00bda3e019a8e056b76f001f0f425
Author: Ben Woodcroft <address@hidden>
Date:   Sun Jul 17 23:47:29 2016 +1000

    gnu: Add perl-test-files.
    
    * gnu/packages/perl.scm (perl-test-files): New variable.
---
 gnu/packages/perl.scm |   25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 47bb707..edb0ba8 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -5562,6 +5562,31 @@ Test::Exception.  It does much less, but should allow 
greater flexibility in
 testing exception-throwing code with about the same amount of typing.")
     (license (package-license perl))))
 
+(define-public perl-test-files
+  (package
+    (name "perl-test-files")
+    (version "0.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/P/PH/PHILCROW/Test-Files-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "1zn33yigznq7i1jr4yjr4lxvc6bn7znkbqdzj7slhc146pqapkln"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-algorithm-diff" ,perl-algorithm-diff)
+       ("perl-text-diff" ,perl-text-diff)))
+    (home-page "http://search.cpan.org/dist/Test-Files";)
+    (synopsis "Ease software testing with files and directories")
+    (description "This library provides functions to enable testing of files
+and directories.  For instance, the @code{file_ok} helper can test whether the
+contents of a file is equal to a particular string.")
+    (license (package-license perl))))
+
 (define-public perl-test-harness
   (package
     (name "perl-test-harness")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]