Mercurial > pub > Impl
annotate _test/object.t @ 46:75148ccd732d
Upgrading resources
author | Sergey |
---|---|
date | Tue, 02 Feb 2010 17:09:49 +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(); |