How can I run Perl test suite automatically when files change?

perl, testing

Solution

Have a look at Test::Continuous

Some Test::Continuous links:

- Video presentation with slides from YAPC::Asia 2008

- Run continuous tests on remote host

- Github repo

Problem

Is there a tool that would watch file changes in a directory tree of a Perl application and re-run the test suite every time I save changes to some module? Something akin to masak’s tote.

Original source