Looks like you achieved what you're planned to achieve and all is working.

You probably need to throw away your "drastic fix" and just place files in "t" directory and probably "test.pl" script as "perldoc ExtUtils::MakeMaker" says:

..... make test MakeMaker checks for the existence of a file named test.pl in the current directory and if it exists it execute the script with the +proper set of perl "-I" options. MakeMaker also checks for any files matching glob("t/*.t"). It wil +l execute all matching files in alphabetical order via the Test::Har +ness module with the "-I" switches set correctly. If you'd like to see the raw output of your tests, set the "TEST_VERBOSE" variable to true. make test TEST_VERBOSE=1 ......
Those files in "t" directory should just use your module and check for corectness of output.

Also look at any CPAN module to see how they do this.

Courage, the Cowardly Dog


In reply to Re: MakeMaker for testing only by Courage
in thread MakeMaker for testing only by tall_man

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.