~ruther/guix-local

95b4594a2ed19e6e1553a1b2a581391ef1b8eaa3 — Antero Mejr 2 years ago 2b6d46c
gnu: Add perl-test-fork.

* gnu/packages/perl-check.scm (perl-test-fork): New variable.

Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
1 files changed, 23 insertions(+), 0 deletions(-)

M gnu/packages/perl-check.scm
M gnu/packages/perl-check.scm => gnu/packages/perl-check.scm +23 -0
@@ 736,6 736,29 @@ and directories.  For instance, the @code{file_ok} helper can test whether the
contents of a file is equal to a particular string.")
    (license perl-license)))

(define-public perl-test-fork
  (package
    (name "perl-test-fork")
    (version "0.02")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "mirror://cpan/authors/id/M/MS/MSCHWERN/Test-Fork-" version
                    ".tar.gz"))
              (sha256
               (base32
                "0gnh8m81fdrwmzy1fix12grfq7sf7nn0gbf24zlap1gq4kxzpzpw"))))
    (build-system perl-build-system)
    (native-inputs (list perl-module-build))
    (home-page "https://metacpan.org/release/Test-Fork")
    (synopsis "Test code which forks")
    (description
     "Testing code which forks is problematic because each test has a number
associated with it.  Coordinating the test number amongst the parent and child
processes is complicated. @code{Test::Fork} provides a function to smooth over
the complications.")
    (license perl-license)))

(define-public perl-test-harness
  (package
    (name "perl-test-harness")