aboutsummaryrefslogtreecommitdiffstats
path: root/testing/test.pl
blob: bf01530712282208827ad19b053f50803e8bc361 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env perl

use strict;
use warnings;

use feature qw/say/;
#use lib 'blib/lib';

use TAP::Harness;
my $harness = TAP::Harness->new({ verbosity => 1,
                                  lib => 'blib/lib',
                                  color => 1,
                                });

my @tests = glob($ARGV[0]);
say "Tests: " . join (", ", @tests);
$harness->runtests(@tests);