annotate _test/ORM.t @ 197:6b1dda998839
 
Added IMPL::declare, IMPL::require, to simplify module definitions
IMPL::Transform now admires object inheritance while searching for the transformation
Added HTTP some exceptions
IMPL::Web::Application::RestResource almost implemented
 | author | sergey | 
 | date | Thu, 19 Apr 2012 02:10:02 +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; |