view _test/run_tests.pl @ 24:7f00786f8210

Первая рабочая реазизация схемы и навигаторов
author Sergey
date Mon, 05 Oct 2009 00:48:49 +0400
parents 818c74b038ae
children 16ada169ca75
line wrap: on
line source

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

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

use IMPL::Test::HarnessRunner;
use IMPL::Test::Straps;

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

$runner->Strap->Executors(
    {
        Re => '.*',
        Executor => $runner->Strap
    }
);

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

1;