Mercurial > pub > Impl
annotate _test/ORM.t @ 220:5c82c15b25b1
sync, updated schema
author | sergey |
---|---|
date | Thu, 23 Aug 2012 17:44:31 +0400 |
parents | 76515373dac0 |
children |
rev | line source |
---|---|
49 | 1 #!/usr/bin/perl -w |
2 use strict; | |
3 use lib '../Lib'; | |
4 use lib '.'; | |
5 | |
6 use IMPL::Test::Plan; | |
7 use IMPL::Test::TAPListener; | |
8 | |
9 my $plan = new IMPL::Test::Plan qw( | |
165 | 10 |
49 | 11 ); |
12 | |
165 | 13 #Test::ORM::Schema |
14 | |
49 | 15 $plan->AddListener(new IMPL::Test::TAPListener); |
16 $plan->Prepare(); | |
17 $plan->Run(); | |
18 | |
19 1; |