Mercurial > pub > Impl
annotate _test/object.t @ 281:a8dbddf491dd
refactoring
*IMPL::declare reset abstractProps static property after implementing these props
*IMPL::Serialization: fixed bug with multiple text parts inside one node
*IMPL::Web::Handler::TTView: removed obsolete property 'location' from 'view' template variable
author | cin |
---|---|
date | Mon, 11 Feb 2013 00:58:22 +0400 |
parents | ad93c9f4dd93 |
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( | |
90 | 10 Test::Class::Meta |
165 | 11 Test::Class::Template |
49 | 12 Test::Object::Common |
273
ad93c9f4dd93
+Added support for destructors, (special method named DTOR)
sergey
parents:
165
diff
changeset
|
13 Test::Object::Destructors |
49 | 14 Test::Object::List |
164 | 15 Test::Object::Fields |
49 | 16 ); |
17 | |
18 $plan->AddListener(new IMPL::Test::TAPListener); | |
19 $plan->Prepare(); | |
20 $plan->Run(); |