in reply to Re: why Test::More?
in thread why Test::More?

how do I find the 't' directory for a module?

Replies are listed 'Best First'.
Re^3: why Test::More?
by kcott (Archbishop) on Sep 11, 2013 at 05:13 UTC

    For any module on CPAN you'll find a consistent layout. Along the top, left-hand side, you'll see:

    author_link > distribution_link > module_name

    Follow the distribution link. In the top section of the page now displayed, you'll see Special Files where you'll find a link to MANIFEST (along with quite a few others).

    Follow the MANIFEST link. Now you'll see a list of links to all the files that make up the distribution. Scroll down until you find paths like t/xxxx.t. These are all the test files. You can look at the code directly from here: there's no need to download and unpack an entire distribution.

    -- Ken

Re^3: why Test::More?
by runrig (Abbot) on Sep 10, 2013 at 16:29 UTC
    Download it from CPAN, unzip, untar it. The 't' directory does not get installed.
Re^3: why Test::More?
by Anonymous Monk on Sep 11, 2013 at 01:45 UTC
    Go to MetaCPAN , click links, find it :)