diff options
author | ivan <ivan> | 2003-07-15 13:16:32 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-07-15 13:16:32 +0000 |
commit | 0ebeec96313dd7edfca340f01f8fbbbac1f4aa1d (patch) | |
tree | 64e852c61cbf09007d52cd6978bfddea721d00d2 /rt/lib/t/01harness.t | |
parent | c0567c688084e89fcd11bf82348b6c418f1254ac (diff) | |
parent | 945721f48f74d5cfffef7c7cf3a3d6bc2521f5dd (diff) |
This commit was generated by cvs2svn to compensate for changes in r2526,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'rt/lib/t/01harness.t')
-rw-r--r-- | rt/lib/t/01harness.t | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rt/lib/t/01harness.t b/rt/lib/t/01harness.t new file mode 100644 index 000000000..98c28d2ba --- /dev/null +++ b/rt/lib/t/01harness.t @@ -0,0 +1,12 @@ +#!/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"); + +my $test = shift @ARGV; +require $test; + |