diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-05 16:47:53 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-06 08:13:28 -0600 |
commit | 800e13d26530439f00d08aee37822326c9104047 (patch) | |
tree | cf563cad85a923ff5e1cdc39f6895a859014fdb7 /gnu | |
parent | 625d0661fa9026d6eb69d156837001b841b92a1a (diff) | |
download | guix-800e13d26530439f00d08aee37822326c9104047.tar guix-800e13d26530439f00d08aee37822326c9104047.tar.gz |
gnu: Add Test-Exception.
* gnu/packages/perl.scm (perl-test-exception): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | 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 6f6e8d5c92..4315650bc0 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -1385,6 +1385,30 @@ functions") ;; license, any version, ..." (license gpl3+))) +(define-public perl-test-exception + (package + (name "perl-test-exception") + (version "0.36") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/" + "Test-Exception-" version ".tar.gz")) + (sha256 + (base32 + "1zpwimspbq11wjrli481qk17aabzxab15cnnryflx45nzn3za2xk")))) + (build-system perl-build-system) + (native-inputs + `(("perl-module-build" ,perl-module-build))) + (propagated-inputs + `(("perl-sub-uplevel" ,perl-sub-uplevel))) + (home-page "http://search.cpan.org/dist/Test-Exception") + (synopsis "Test exception based code") + (description "This module provides a few convenience methods for testing +exception based code. It is built with Test::Builder and plays happily with +Test::More and friends.") + (license (package-license perl)))) + (define-public perl-test-fatal (package (name "perl-test-fatal") |