gnu: Add Test-Fatal.

* gnu/packages/perl.scm (perl-test-fatal): New variable.
master
Eric Bavier 2015-03-05 15:20:57 -06:00
parent 90ae6151cf
commit 07b2c25486
1 changed files with 21 additions and 0 deletions

View File

@ -527,6 +527,27 @@ structures without getting caught in an infinite loop.")
"Test-Deep-" version))
(license gpl1+))) ; or "Artistic License"
(define-public perl-test-fatal
(package
(name "perl-test-fatal")
(version "0.014")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
"Test-Fatal-" version ".tar.gz"))
(sha256
(base32
"1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
(build-system perl-build-system)
(propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
(home-page "http://search.cpan.org/dist/Test-Fatal")
(synopsis "Simple helpers for testing code with exceptions")
(description "Test::Fatal is an alternative to the popular
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-nowarnings
(package
(name "perl-test-nowarnings")