view _test/ORM.t @ 365:7c621bb95e53

working on the metadata model
author sergey
date Mon, 02 Dec 2013 02:13:12 +0400
parents 76515373dac0
children
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::ORM::Schema

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

1;