gnu: Add Test-WriteVariants.

* gnu/packages/perl.scm (perl-test-writevariants): New variable.
master
Eric Bavier 2015-03-05 16:55:38 -06:00
parent 61fc683117
commit da9e3012b5
1 changed files with 25 additions and 0 deletions

View File

@ -1773,6 +1773,31 @@ hooking into done_testing as well as via an END block. You can declare a
plan, or not, and things will still Just Work.")
(license (package-license perl))))
(define-public perl-test-writevariants
(package
(name "perl-test-writevariants")
(version "0.010")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
"Test-WriteVariants-" version ".tar.gz"))
(sha256
(base32
"0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
(build-system perl-build-system)
(native-inputs
`(("perl-test-most" ,perl-test-most)
("perl-test-directory" ,perl-test-directory)))
(propagated-inputs
`(("perl-data-tumbler" ,perl-data-tumbler)
("perl-file-homedir" ,perl-file-homedir)))
(home-page "http://search.cpan.org/dist/Test-WriteVariants")
(synopsis "Dynamic generation of tests")
(description "The Test::WriteVariants module provides for the dynamic
generation of tests in nested combinations of contexts.")
(license (package-license perl)))) ;See LICENSE
(define-public perl-text-diff
(package
(name "perl-text-diff")