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

use Test::More qw(no_plan);

use lib "/opt/rt3/lib";
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 '$_'"); }