summaryrefslogtreecommitdiff
path: root/rt/lib/t/00smoke.t.in
blob: 288dd4aaea2b17c82a81acc041f70ce0eaa62016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!@PERL@

use Test::More qw(no_plan);

use lib "@RT_LIB_PATH@";
use RT;
ok(RT::LoadConfig);
ok(RT::Init, "Basic initialization and DB connectivity");

use File::Find;
File::Find::find({wanted => \&wanted}, 'lib/');
sub wanted { /^*\.pm\z/s && ok(require $_, "Requiring '$_'"); }