diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2025-11-09 15:16:32 -0500 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-11-15 17:32:48 +0100 |
| commit | e8bacdd8871c17b5f9014afe7a704c28f02f32ea (patch) | |
| tree | e429de94d11ace51f28cd49c3d75ab22ab7ba5ba | |
| parent | 75701792e10728d4950316609c0effc9f7c9b9a3 (diff) | |
gnu: Add perl-test-some.
* gnu/packages/perl.scm (perl-test-some): New variable.
Change-Id: Iadab3487685c68a2fa58519164bb394315a87ff8
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -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 c79e7f05cad..179e3393adc 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -4983,6 +4983,30 @@ as a string, and @code{%(num)4d} will emit the @var{num} parameter as a variable with a width of 4.") (license license:x11))) +(define-public perl-test-some + (package + (name "perl-test-some") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/Test-Some-" + version ".tar.gz")) + (sha256 + (base32 "1qhhp7i76pw2k4xa1f9lwiscif2kf6m3f2gxpprif5pd05w5lay9")))) + (build-system perl-build-system) + (propagated-inputs (list perl-list-moreutils perl-package-stash)) + (home-page "https://metacpan.org/release/Test-Some") + (synopsis "Test a subset of tests") + (description + "This module allows one to run a subset of the @code{subtest} tests given in a +test file. + +The module declaration takes a whitelist of the subtests we want to run. Any +subtest that doesn't match any of the whitelist items will be skipped (or +potentially bypassed).") + (license license:perl-license))) + (define-public perl-eval-closure (package (name "perl-eval-closure") |
