diff options
Diffstat (limited to 'rt/lib/t/01harness.t.in')
-rw-r--r-- | rt/lib/t/01harness.t.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rt/lib/t/01harness.t.in b/rt/lib/t/01harness.t.in new file mode 100644 index 000000000..d132330c2 --- /dev/null +++ b/rt/lib/t/01harness.t.in @@ -0,0 +1,12 @@ +#!@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"); + +my $test = shift @ARGV; +require $test; + |