summaryrefslogtreecommitdiff
path: root/rt/lib/t/00smoke.t.in
blob: 11f0a9c43331d2443a625a5e235acf720da2e703 (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}, '.');
sub wanted { /^*\.pm\z/s && ok(require $_, "Requiring '$_'"); }