annotate _test/Web.t @ 138:c5bc900eefd3
IMPL::Web::Application: Fixed file uploading
Minor improvements in the IMPL::Web::TT::Form
author |
wizard |
date |
Thu, 01 Jul 2010 04:25:07 +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();
|