File: 000_fixme.t

package info (click to toggle)
libeval-context-perl 0.09.11-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 392 kB
  • sloc: perl: 762; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

# fixme test

use strict ;
use warnings ;

use Test::More ;

eval 
{
require Test::Fixme;
Test::Fixme->import();

run_tests
	(
	where    => 'lib',      # where to find files to check
	match    => qr/TODO|FIXME/i,     # what to check for
	#~ skip_all => $ENV{SKIP}  # should all tests be skipped
	) ;
	
};

plan( skip_all => 'Test::Fixme not installed; skipping' ) if $@;