Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You said:</p> <blockquote> <p>"What I am looking for is a more of automated framework which can do incremental testing/build checks etc"</p> </blockquote> <p>Still not entirely sure what you're after. As others have mentioned you want to look at things that are based on Test::Harness/TAP. The vast majority of the Perl testing community uses that framework - so you'll get much more support (and useful existing code) by using that.</p> <p>Can you talk a little more about what you mean by "incremental testing/build checks"?</p> <p>I'm guessing that you want to divide up your tests into groups so that you're only running certain sets of tests in certain circumstances?</p> <p>There are a couple of ways to do this. The simplest would be to just use the file system - split up your test directories so you have things like:</p> <pre> core/ database.t infrastructure.t style/ percritic.t ui/ something.t something-else.t </pre> <p>And so on... you can then use the command line "prove" tool to run them all, or only certain directories, etc. </p> <p>prove has a lot of useful options that let you choose which tests are run and in which order (e.g. things like most-recently-failed order). This - all by itself - will probably get you towards what you need.</p> <p>(BTW it's important to get a recent version of Test::Simple/prove/etc. from CPAN. Recent versions have much, much more functionality). </p> <p>If you're of an OO mindset, or have previous experience of xUnit frameworks, than you might want to take a look at Test::Class which is a Perl xUnit framework that's build on top of the TAP/Test::Harness layer. I think it's quite a lot better than PerlUnit - but I would say that since I wrote it :-)</p> <p>Check out delicious for some more info on Test::Class <a href="http://delicious.com/tag/Test::Class" rel="nofollow noreferrer">http://delicious.com/tag/Test::Class</a></p> <p>If this isn't what you're after - could you go into a bit more detail on what functionality you want?</p> <p>Cheers,</p> <p>Adrian</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload