Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > b629ba3dbba0478ecfc3f47522206b3f > files > 87

perl-Test-Harness-3.290.0-2.mga4.x86_64.rpm

#!/usr/bin/perl
#
# Run some tests and get back a data structure describing them.

use strict;
use warnings;
use TAP::Harness;
use Data::Dumper;

my @tests = glob 't/yaml*.t';

my $harness = TAP::Harness->new( { verbosity => -9, lib => ['blib/lib'] } );

# $aggregate is a TAP::Parser::Aggregator
my $aggregate = $harness->runtests(@tests);
print Dumper($aggregate);