Mercurial > pub > Impl
annotate _test/object.t @ 321:3dc9260017ad
Added JSON support for the request action
author | cin |
---|---|
date | Mon, 20 May 2013 01:14:27 +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(); |