blob: 719ecca5c94246a0fe64c5b946df70b01a15d6bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
BEGIN{ chdir("PerlTQt/t") or die "couldn't chdir to PerlTQt: $!\n" }
END{ chdir("../..") or die "couldn't chdir to ../..\n" }
use blib;
use Test::Harness;
$Test::Harness::switches = "-w -Mblib=../blib";
@t = glob("*.t");
runtests(@t);
|