Mercurial > pub > Impl
annotate _test/object.t @ 40:ac21a032e7a9
bnf parser in progress
author | Sergey |
---|---|
date | Thu, 10 Dec 2009 17:43:39 +0300 |
parents | 2e546a5175dd |
children | 16ada169ca75 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/perl -w |
2 use strict; | |
3 use lib '../Lib'; | |
3 | 4 use lib '.'; |
0 | 5 |
3 | 6 use IMPL::Test::Plan; |
7 use IMPL::Test::TAPListener; | |
0 | 8 |
3 | 9 my $plan = new IMPL::Test::Plan qw( |
10 Test::Object::Common | |
11 Test::Object::List | |
12 ); | |
0 | 13 |
3 | 14 $plan->AddListener(new IMPL::Test::TAPListener); |
15 $plan->Prepare(); | |
16 $plan->Run(); |