gnu: Add perl-test-inter.
* gnu/packages/perl-check.scm (perl-test-inter): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
parent
7a6294ba05
commit
fb52f687f7
|
@ -39,6 +39,7 @@
|
||||||
#:use-module (gnu packages web)
|
#:use-module (gnu packages web)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (gnu packages perl))
|
#:use-module (gnu packages perl))
|
||||||
|
|
||||||
|
@ -715,6 +716,29 @@ contents of a file is equal to a particular string.")
|
||||||
automatically aggregated and output to STDOUT.")
|
automatically aggregated and output to STDOUT.")
|
||||||
(license perl-license)))
|
(license perl-license)))
|
||||||
|
|
||||||
|
(define-public perl-test-inter
|
||||||
|
(package
|
||||||
|
(name "perl-test-inter")
|
||||||
|
(version "1.10")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/SBECK-github/Test-Inter")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0ii3avmd31j3kxg456jqvlj5w0hpywpj51mqm4ccnjm820yv8irb"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "https://metacpan.org/pod/Test::Inter")
|
||||||
|
(synopsis "Framework for more readable interactive test scripts")
|
||||||
|
(description
|
||||||
|
"@code{Test::Inter} is another framework for writing test scripts, which
|
||||||
|
offer the ability to access specific tests in a reasonably interactive
|
||||||
|
fashion, primarily for debugging purposes. Much of the syntax is loosely
|
||||||
|
inspired by @code{Test::More}.")
|
||||||
|
(license perl-license)))
|
||||||
|
|
||||||
(define-public perl-test-leaktrace
|
(define-public perl-test-leaktrace
|
||||||
(package
|
(package
|
||||||
(name "perl-test-leaktrace")
|
(name "perl-test-leaktrace")
|
||||||
|
|
Reference in New Issue