view _test/run_tests.pl @ 415:3d24b10dd0d5 ref20150831

working on IMPL::Config::Container
author cin
date Tue, 20 Oct 2015 07:32:55 +0300
parents d1676be8afcc
children 3f38dabaf5cc
line wrap: on
line source

#!/usr/bin/perl
use strict;
use warnings;

use lib '../Lib';
use lib '.';

use IMPL::Test::HarnessRunner;

my $runner = new IMPL::Test::HarnessRunner();

$runner->RunTests(<*.t>);

1;