annotate _test/Web.t @ 165:76515373dac0
Added Class::Template,
Rewritten SQL::Schema
'use parent' directive instead of 'use base'
author |
wizard |
date |
Sat, 23 Apr 2011 23:06:48 +0400 |
parents |
a4b0a819bbda |
children |
2184fa28b49e |
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(
|
77
|
10 Test::Web::TT
|
49
|
11 );
|
|
12
|
|
13 $plan->AddListener(new IMPL::Test::TAPListener);
|
|
14 $plan->Prepare();
|
|
15 $plan->Run();
|