guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add Test::Deep.


From: Ludovic Courtès
Subject: 03/04: gnu: Add Test::Deep.
Date: Tue, 16 Dec 2014 23:11:34 +0000

civodul pushed a commit to branch master
in repository guix.

commit 0ad3969fcd502cd1433633c1c62c921700643122
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Dec 16 12:19:15 2014 +0100

    gnu: Add Test::Deep.
    
    * gnu/packages/perl.scm (perl-test-deep): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/perl.scm |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index c8011f5..4135533 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -253,6 +253,30 @@ Perlish API and none of the bloat and rarely used features 
of IPC::Run.")
     ;; licenses, any version."
     (license (list bsd-3 gpl3+))))
 
+(define-public perl-test-deep
+  (package
+    (name "perl-test-deep")
+    (version "0.114")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
+                                  "Test-Deep-" version ".tar.gz"))
+              (sha256
+               (base32
+                "09yr47vw7vj27sdik312x08938higcij8ybyq8k67mlccx8cpqf0"))))
+    (build-system perl-build-system)
+    (inputs `(("perl-test-tester" ,perl-test-tester)
+              ("perl-test-nowarnings" ,perl-test-nowarnings)))
+    (synopsis "Flexible deep comparison for the Test::Builder framework")
+    (description
+     "Test::Deep compares two structures by going through each level, ensuring
+that the values match, that arrays and hashes have the same elements and that
+references are blessed into the correct class. It also handles circular data
+structures without getting caught in an infinite loop.")
+    (home-page (string-append "http://search.cpan.org/~rjbs/";
+                              "Test-Deep-" version))
+    (license gpl1+)))  ; or "Artistic License"
+
 (define-public perl-test-nowarnings
   (package
     (name "perl-test-nowarnings")



reply via email to

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