I recommend subdirectories (and making prove recurse on them). More
specifically, I recommend numbered subdirectories organized by
functional area, where the numbering behaves correctly in standard
globification.
For example, something like this:
000_basics/
001_cpan-prerequisites.t
002_database-bootstrap.t
...
100_orm/
101_dbix-main-schema.t
102_dbix-main-foo.t
...
200_main-classes/
201_My-Special-Foo.t
202_My-Class-Accessor-Lightspeed.t
...
300_parsing/
301_xml-to-spaghetti.t
302_unmelt-ice-cream.t
...
This gives you a few instant advantages:
- Your tests will be run in a useful order (ideally an order of ascending complexity).
- You can sensibly BAIL_OUT if you need to.
- Running only a group of related tests will be easy.
- If you need to later, you can have arbitrary levels of subdirectories without breaking the organization.
- If done right, it makes it easy to find tests.
- If done right, it makes it easy for new devs to know where to put their tests.
Anyway, setting up your test infrastructure is a Really Important Thing
and I urge you to give it the same level of consideration you do to the rest
of your system architecture. People touching your code later, including your future self, will thank you for it.
Oh yeah, and document the test architecture in case you're run over by an elephant and someone else has to figure it out.
isnt( $THEIR::obvious, $YOUR::obvious, "/obvious" );
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.