mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: Add perl-test-object.
* gnu/packages/perl-check.scm (perl-test-object): New variable.
This commit is contained in:
parent
25985c6957
commit
e72b40af3e
1 changed files with 29 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
||||||
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1065,6 +1066,34 @@ (define-public perl-test-number-delta
|
||||||
@code{Test::More}.")
|
@code{Test::More}.")
|
||||||
(license asl2.0)))
|
(license asl2.0)))
|
||||||
|
|
||||||
|
(define-public perl-test-object
|
||||||
|
(package
|
||||||
|
(name "perl-test-object")
|
||||||
|
(version "0.08")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
|
||||||
|
"Test-Object-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1fyhn558kvla37fb60fzdr6kd2kfcxcmpr8884zk2dvq2ij8j9v5"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "https://metacpan.org/release/Test-Object")
|
||||||
|
(synopsis "Thoroughly testing objects via registered handlers")
|
||||||
|
(description
|
||||||
|
"In situations where you have deep trees of classes,
|
||||||
|
there is a common situation in which you test a module 4 or 5 subclasses down,
|
||||||
|
which should follow the correct behaviour of not just the subclass, but of all
|
||||||
|
the parent classes.
|
||||||
|
|
||||||
|
This should be done to ensure that the implementation of a subclass has not
|
||||||
|
somehow ``broken'' the object's behaviour in a more general sense.
|
||||||
|
|
||||||
|
Test::Object is a testing package designed to allow you to easily test what
|
||||||
|
you believe is a valid object against the expected behaviour of all of the
|
||||||
|
classes in its inheritance tree in one single call.")
|
||||||
|
(license perl-license)))
|
||||||
|
|
||||||
(define-public perl-test-output
|
(define-public perl-test-output
|
||||||
(package
|
(package
|
||||||
(name "perl-test-output")
|
(name "perl-test-output")
|
||||||
|
|
Loading…
Reference in a new issue