aboutsummaryrefslogblamecommitdiffstats
path: root/testing/test.pl
blob: bf01530712282208827ad19b053f50803e8bc361 (plain) (tree)
1
2
3
4
5
6
7
8





                    
                    
 




                                                    
 


                                    
#!/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);