The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
#
# This file is part of Debug-Fork-Tmux
#
# This software is Copyright (c) 2013 by Peter Vereshagin.
#
# This is free software, licensed under:
#
#   The (three-clause) BSD License
#
# test code for FIXME/BUG/TODO/XXX/NOTE labels

use strict;
use warnings;
use Test::More;

eval 'use Test::Fixme';    ## no critic
plan skip_all => 'Test::Fixme required' if $@;

# test files in t/ and xt/ could have FIXME and other words, so we testing only lib/
run_tests( match => qr/FIXME|BUG\b|XXX/, where => [qw/ lib /] );