diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-02-21 19:56:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-02-24 21:29:27 +0100 |
commit | fb0832037f2bfcd34eab9b0a522945a1a220c350 (patch) | |
tree | 510704105d9a33bf63da5c68cd6a90bdaf744c49 | |
parent | 61593ab3d6888f89a382d1ba065167c788dd9715 (diff) | |
download | guix-fb0832037f2bfcd34eab9b0a522945a1a220c350.tar guix-fb0832037f2bfcd34eab9b0a522945a1a220c350.tar.gz |
gnu: Add Test::Output.
* gnu/packages/perl.scm (perl-test-output): New variable.
-rw-r--r-- | gnu/packages/perl.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 43bffd8b39..214ab3e951 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -480,6 +480,31 @@ bin as is also commonly used) paths of your Perl distribution.") "Test-Simple-" version)) (license (package-license perl)))) +(define-public perl-test-output + (package + (name "perl-test-output") + (version "1.03") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/" + "Test-Output-" version ".tar.gz")) + (sha256 + (base32 + "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i")))) + (build-system perl-build-system) + (propagated-inputs + `(("perl-capture-tiny" ,perl-capture-tiny) + ("perl-test-tester" ,perl-test-tester) + ("perl-sub-exporter" ,perl-sub-exporter))) + (synopsis "Utilities to test STDOUT and STDERR messages") + (description + "Test::Output provides a simple interface for testing output sent to +STDOUT or STDERR. A number of different utilities are included to try and be +as flexible as possible to the tester.") + (home-page (string-append "http://search.cpan.org/~bdfoy/" + "Test-Output-" version)) + (license (package-license perl)))) + (define-public perl-test-tester (package (name "perl-test-tester") |