emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#63914: closed ([PATCH] gnu: Add perl-test-inter.)


From: GNU bug Tracking System
Subject: bug#63914: closed ([PATCH] gnu: Add perl-test-inter.)
Date: Sat, 22 Jul 2023 03:21:01 +0000

Your message dated Sat, 22 Jul 2023 11:20:47 +0800
with message-id <87zg3oljhs.fsf@envs.net>
and subject line Re: bug#63914: [PATCH] gnu: Add perl-test-inter.
has caused the debbugs.gnu.org bug report #63914,
regarding [PATCH] gnu: Add perl-test-inter.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
63914: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=63914
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add perl-test-inter. Date: Mon, 5 Jun 2023 18:44:21 +0000
---
 gnu/packages/perl-check.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm
index 7bf58832bc..39fdac29be 100644
--- a/gnu/packages/perl-check.scm
+++ b/gnu/packages/perl-check.scm
@@ -39,6 +39,7 @@ (define-module (gnu packages perl-check)
   #:use-module (gnu packages web)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix build-system perl)
   #:use-module (gnu packages perl))
 
@@ -715,6 +716,28 @@ (define-public perl-test-harness
 automatically aggregated and output to STDOUT.")
     (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
+     "Another framework for writing test scripts.  Much of the
+syntax is loosely inspired by Test::More, and Test::Inter has most of its
+functionality, but is not a drop-in replacement")
+    (license perl-license)))
+
 (define-public perl-test-leaktrace
   (package
     (name "perl-test-leaktrace")

base-commit: a025d8fee6c8df1db750058d41f984103eb77978
-- 
2.30.2




--- End Message ---
--- Begin Message --- Subject: Re: bug#63914: [PATCH] gnu: Add perl-test-inter. Date: Sat, 22 Jul 2023 11:20:47 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Thank you for the patch, I applied it with improved (hopefully) description:


-     "Another framework for writing test scripts.  Much of the
-syntax is loosely inspired by Test::More, and Test::Inter has most of its
-functionality, but is not a drop-in replacement")
+     "@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


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]