Skip Menu |

This queue is for tickets about the XML-LibXML-Simple CPAN distribution.

Report information
The Basics
Id: 42765
Status: resolved
Priority: 0/
Queue: XML-LibXML-Simple

People
Owner: Nobody in particular
Requestors: miyagawa [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] do not fail if Test::Pod is not installed
Date: Sat, 24 Jan 2009 21:54:16 -0800
To: bug-XML-LibXML-Simple [...] rt.cpan.org
From: Tatsuhiko Miyagawa <miyagawa [...] gmail.com>
--- t/99pod.t | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) mode change 100644 => 100755 t/99pod.t diff --git a/t/99pod.t b/t/99pod.t old mode 100644 new mode 100755 index ab9b19b..83d6bae --- a/t/99pod.t +++ b/t/99pod.t @@ -2,6 +2,8 @@ use warnings; use strict; -use Test::Pod; +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; all_pod_files_ok(); -- 1.6.1 -- Tatsuhiko Miyagawa
Subject: Re: [rt.cpan.org #42765] [PATCH] do not fail if Test::Pod is not installed
Date: Sun, 25 Jan 2009 13:07:20 +0100
To: "miyagawa [...] gmail.com via RT" <bug-XML-LibXML-Simple [...] rt.cpan.org>
From: Mark Overmeer <mark [...] overmeer.net>
* miyagawa@gmail.com via RT (bug-XML-LibXML-Simple@rt.cpan.org) [090125 05:54]: Show quoted text
> Sun Jan 25 00:54:58 2009: Request 42765 was acted upon. > Transaction: Ticket created by miyagawa@gmail.com > Queue: XML-LibXML-Simple > Subject: [PATCH] do not fail if Test::Pod is not installed
Test::Pod is a pre-requisit, as for many other distributions. Is there one reason that you are not willing to install that module? Should we also skip all tests if someone does not want to install Test::More? -- Regards, MarkOv ------------------------------------------------------------------------ Mark Overmeer MSc MARKOV Solutions Mark@Overmeer.net solutions@overmeer.net http://Mark.Overmeer.net http://solutions.overmeer.net
Subject: Re: [rt.cpan.org #42765] [PATCH] do not fail if Test::Pod is not installed
Date: Sun, 25 Jan 2009 11:11:20 -0800
To: bug-XML-LibXML-Simple [...] rt.cpan.org
From: Tatsuhiko Miyagawa <miyagawa [...] gmail.com>
On Sun, Jan 25, 2009 at 5:28 AM, Mark Overmeer via RT <bug-XML-LibXML-Simple@rt.cpan.org> wrote: Show quoted text
> > Test::Pod is a pre-requisit, as for many other distributions. Is there > one reason that you are not willing to install that module? Should we > also skip all tests if someone does not want to install Test::More?
Weird. I tried to install it on my fresh machine yesterday from CPAN shell and that test failed because Test::Pod wasn't automatically installed. -- Tatsuhiko Miyagawa
Subject: Re: [rt.cpan.org #42765] [PATCH] do not fail if Test::Pod is not installed
Date: Mon, 26 Jan 2009 08:53:50 +0100
To: "miyagawa [...] gmail.com via RT" <bug-XML-LibXML-Simple [...] rt.cpan.org>
From: Mark Overmeer <solutions [...] overmeer.net>
* miyagawa@gmail.com via RT (bug-XML-LibXML-Simple@rt.cpan.org) [090125 19:12]: Show quoted text
> Queue: XML-LibXML-Simple > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=42765 > > > On Sun, Jan 25, 2009 at 5:28 AM, Mark Overmeer via RT > <bug-XML-LibXML-Simple@rt.cpan.org> wrote:
> > > > Test::Pod is a pre-requisit, as for many other distributions. Is there > > one reason that you are not willing to install that module? Should we > > also skip all tests if someone does not want to install Test::More?
> > Weird. I tried to install it on my fresh machine yesterday from CPAN > shell and that test failed because Test::Pod wasn't automatically > installed.
It is in the PREREQ_PM, so I do not know what happened with your installation. -- Regards, MarkOv ------------------------------------------------------------------------ Mark Overmeer MSc MARKOV Solutions Mark@Overmeer.net solutions@overmeer.net http://Mark.Overmeer.net http://solutions.overmeer.net
problem caused by user's set-up