Codebase list libtest-useallmodules-perl / debian/0.15-1 t / 07_extra_tests.t
debian/0.15-1

Tree @debian/0.15-1 (Download .tar.gz)

07_extra_tests.t @debian/0.15-1raw · history · blame

use strict;
use warnings;
use FindBin;
use lib glob("$FindBin::Bin/extlib/*/lib");
use Test::More;
use Test::UseAllModules under => qw(lib t/lib/);

BEGIN {
  chdir 't/MANIFESTed';

  plan tests => Test::UseAllModules::_get_module_list() + 1;

  all_uses_ok();
  chdir '../..';

  pass "test count should be correct";
}