view _test/object.t @ 24:7f00786f8210

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

#!/usr/bin/perl -w
use strict;
use lib '../Lib';
use lib '.';

use IMPL::Test::Plan;
use IMPL::Test::TAPListener;

my $plan = new IMPL::Test::Plan qw(
    Test::Object::Common
    Test::Object::List
);

$plan->AddListener(new IMPL::Test::TAPListener);
$plan->Prepare();
$plan->Run();