summaryrefslogtreecommitdiff
path: root/rt/lib/t/00smoke.t
blob: 9e9bf4a6070b0e592a260d0b7a920015ac711fd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use Test::More qw(no_plan);

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 '$_'"); }