Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Module-Starter CPAN distribution.

Report information
The Basics
Id: 7942
Status: rejected
Worked: 1 min
Priority: 0/
Queue: Module-Starter

People
Owner: rjbs [...] cpan.org
Requestors: SAPER [...] cpan.org
Cc:
AdminCc:

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



Subject: Adding Test::Distribution to the created tests
Hello, Something which is missing in the tests that Module::Starter automatically creates is a test script which uses Test::Distribution. Here is the script I use, which is very much like t/pod.t and t/pod-coverage.t: use strict; use Test::More; eval "use Test::Distribution"; plan skip_all => "Test::Distribution required for checking distribution" if $@; Thanks in advance, Sébastien Aperghis-Tramoni
There are a lot of default tests and files that could be included with M::S, but I'd like to keep them to a minimum. I've listed this file in my "possible future additions," but I don't think it will be added in the immediate future. In the meantime, if you are using a set of module templates, you can add a template for any *.t file you like and it will be generated when you module-start.
From: Sagar R. Shah
[RJBS - Sat Oct 9 11:01:28 2004]: Show quoted text
> There are a lot of default tests and files that could be included with > M::S, but I'd like to keep > them to a minimum.
I'm probably biased since i'm the current author of T::D, but the point of T::D is that it's a container for other modules like Test::Pod, Test::Pod::Coverage plus additing additional tests, so actually you could do away with the other tests and just add this one. Of course not everyone likes T::D ... let me know if u would like a patch tho.
From: sjn+perlbug [...] pvv.org
On Lør. 09. Okt. 2004 11:01:28, RJBS wrote: Show quoted text
> > There are a lot of default tests and files that could be included with > M::S, but I'd like to keep them to a minimum.
Why?