Test::Fixme

Test::Fixme is a Perl module to check code for FIXMEs.
Download

Test::Fixme Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Edmund von der Burg
  • Publisher web site:
  • http://search.cpan.org/~evdb/

Test::Fixme Tags


Test::Fixme Description

Test::Fixme is a Perl module to check code for FIXMEs. Test::Fixme is a Perl module to check code for FIXMEs.SYNOPSIS # In a test script like 't/test-fixme.t' use Test::Fixme; run_tests(); # You can also tailor the behaviour. use Test::Fixme; run_tests( where => 'lib', # where to find files to check match => 'TODO', # what to check for skip_all => $ENV{SKIP} # should all tests be skipped );When coding it is common to come up against problems that need to be addressed but that are not a big deal at the moment. What generally happens is that the coder adds comments like: # FIXME - what about windows that are bigger than the screen? # FIXME - add checking of user priviledges here.Test::Fixme allows you to add a test file that ensures that none of these get forgotten in the module.ArgumentsBy default run_tests will search for 'FIXME' in all the files it can find in the project. You can change these defaults by using 'where' or 'match' as follows: run_tests( where => 'lib', # just check the modules. match => 'TODO' # look for things that are not done yet. ); Requirements: · Perl


Test::Fixme Related Software