Rename the test app into the lib directory
Tomas Doran [Sun, 24 Jan 2010 21:40:30 +0000 (21:40 +0000)]
13 files changed:
t/ESITest/Makefile.PL [deleted file]
t/ESITest/esitest.conf [deleted file]
t/ESITest/script/esitest_cgi.pl [deleted file]
t/ESITest/script/esitest_create.pl [deleted file]
t/ESITest/script/esitest_fastcgi.pl [deleted file]
t/ESITest/script/esitest_test.pl [deleted file]
t/lib/ESITest.pm [moved from t/ESITest/lib/ESITest.pm with 100% similarity]
t/lib/ESITest/Controller/Root.pm [moved from t/ESITest/lib/ESITest/Controller/Root.pm with 100% similarity]
t/lib/ESITest/View/TT.pm [moved from t/ESITest/lib/ESITest/View/TT.pm with 100% similarity]
t/lib/ESITest/root/favicon.ico [moved from t/ESITest/root/favicon.ico with 100% similarity]
t/lib/ESITest/root/index.tt [moved from t/ESITest/root/index.tt with 100% similarity]
t/lib/ESITest/root/time_include.tt [moved from t/ESITest/root/time_include.tt with 100% similarity]
t/script/esitest_server.pl [moved from t/ESITest/script/esitest_server.pl with 100% similarity]

diff --git a/t/ESITest/Makefile.PL b/t/ESITest/Makefile.PL
deleted file mode 100644 (file)
index a14c1d5..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-# IMPORTANT: if you delete this file your app will not work as
-# expected.  you have been warned
-use inc::Module::Install;
-
-name 'ESITest';
-all_from 'lib/ESITest.pm';
-
-requires 'Catalyst::Runtime' => '5.7014';
-requires 'Catalyst::Plugin::ConfigLoader';
-requires 'Catalyst::Plugin::Static::Simple';
-requires 'Catalyst::Action::RenderView';
-requires 'parent';
-requires 'Config::General'; # This should reflect the config file format you've chosen
-                 # See Catalyst::Plugin::ConfigLoader for supported formats
-catalyst;
-
-install_script glob('script/*.pl');
-auto_install;
-WriteAll;
diff --git a/t/ESITest/esitest.conf b/t/ESITest/esitest.conf
deleted file mode 100644 (file)
index a594520..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-name ESITest
-
-<View::TT>
-  subinclude_plugin   Visit
-</View::TT>
diff --git a/t/ESITest/script/esitest_cgi.pl b/t/ESITest/script/esitest_cgi.pl
deleted file mode 100644 (file)
index 6e83bb2..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#/usr/bin/perl -w
-
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
-
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use ESITest;
-
-ESITest->run;
-
-1;
-
-=head1 NAME
-
-esitest_cgi.pl - Catalyst CGI
-
-=head1 SYNOPSIS
-
-See L<Catalyst::Manual>
-
-=head1 DESCRIPTION
-
-Run a Catalyst application as a cgi script.
-
-=head1 AUTHORS
-
-Catalyst Contributors, see Catalyst.pm
-
-=head1 COPYRIGHT
-
-
-This library is free software, you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut
diff --git a/t/ESITest/script/esitest_create.pl b/t/ESITest/script/esitest_create.pl
deleted file mode 100644 (file)
index c7b2b5a..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-#/usr/bin/perl -w
-
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use Catalyst::Helper;
-
-my $force = 0;
-my $mech  = 0;
-my $help  = 0;
-
-GetOptions(
-    'nonew|force'    => \$force,
-    'mech|mechanize' => \$mech,
-    'help|?'         => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'ESITest', @ARGV );
-
-1;
-
-=head1 NAME
-
-esitest_create.pl - Create a new Catalyst Component
-
-=head1 SYNOPSIS
-
-esitest_create.pl [options] model|view|controller name [helper] [options]
-
- Options:
-   -force        don't create a .new file where a file to be created exists
-   -mechanize    use Test::WWW::Mechanize::Catalyst for tests if available
-   -help         display this help and exits
-
- Examples:
-   esitest_create.pl controller My::Controller
-   esitest_create.pl controller My::Controller BindLex
-   esitest_create.pl -mechanize controller My::Controller
-   esitest_create.pl view My::View
-   esitest_create.pl view MyView TT
-   esitest_create.pl view TT TT
-   esitest_create.pl model My::Model
-   esitest_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
-   dbi:SQLite:/tmp/my.db
-   esitest_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
-   dbi:Pg:dbname=foo root 4321
-
- See also:
-   perldoc Catalyst::Manual
-   perldoc Catalyst::Manual::Intro
-
-=head1 DESCRIPTION
-
-Create a new Catalyst Component.
-
-Existing component files are not overwritten.  If any of the component files
-to be created already exist the file will be written with a '.new' suffix.
-This behavior can be suppressed with the C<-force> option.
-
-=head1 AUTHORS
-
-Catalyst Contributors, see Catalyst.pm
-
-=head1 COPYRIGHT
-
-This library is free software, you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut
diff --git a/t/ESITest/script/esitest_fastcgi.pl b/t/ESITest/script/esitest_fastcgi.pl
deleted file mode 100644 (file)
index 1eb6e0c..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-#/usr/bin/perl -w
-
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
-
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use ESITest;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-GetOptions(
-    'help|?'      => \$help,
-    'listen|l=s'  => \$listen,
-    'nproc|n=i'   => \$nproc,
-    'pidfile|p=s' => \$pidfile,
-    'manager|M=s' => \$manager,
-    'daemon|d'    => \$detach,
-    'keeperr|e'   => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-ESITest->run( 
-    $listen, 
-    {   nproc   => $nproc,
-        pidfile => $pidfile, 
-        manager => $manager,
-        detach  => $detach,
-       keep_stderr => $keep_stderr,
-    }
-);
-
-1;
-
-=head1 NAME
-
-esitest_fastcgi.pl - Catalyst FastCGI
-
-=head1 SYNOPSIS
-
-esitest_fastcgi.pl [options]
- Options:
-   -? -help      display this help and exits
-   -l -listen    Socket path to listen on
-                 (defaults to standard input)
-                 can be HOST:PORT, :PORT or a
-                 filesystem path
-   -n -nproc     specify number of processes to keep
-                 to serve requests (defaults to 1,
-                 requires -listen)
-   -p -pidfile   specify filename for pid file
-                 (requires -listen)
-   -d -daemon    daemonize (requires -listen)
-   -M -manager   specify alternate process manager
-                 (FCGI::ProcManager sub-class)
-                 or empty string to disable
-   -e -keeperr   send error messages to STDOUT, not
-                 to the webserver
-
-=head1 DESCRIPTION
-
-Run a Catalyst application as fastcgi.
-
-=head1 AUTHORS
-
-Catalyst Contributors, see Catalyst.pm
-
-=head1 COPYRIGHT
-
-This library is free software, you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut
diff --git a/t/ESITest/script/esitest_test.pl b/t/ESITest/script/esitest_test.pl
deleted file mode 100644 (file)
index bcb2b51..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#/usr/bin/perl -w
-
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'ESITest';
-
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
-1;
-
-=head1 NAME
-
-esitest_test.pl - Catalyst Test
-
-=head1 SYNOPSIS
-
-esitest_test.pl [options] uri
-
- Options:
-   -help    display this help and exits
-
- Examples:
-   esitest_test.pl http://localhost/some_action
-   esitest_test.pl /some_action
-
- See also:
-   perldoc Catalyst::Manual
-   perldoc Catalyst::Manual::Intro
-
-=head1 DESCRIPTION
-
-Run a Catalyst action from the command line.
-
-=head1 AUTHORS
-
-Catalyst Contributors, see Catalyst.pm
-
-=head1 COPYRIGHT
-
-This library is free software, you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut
similarity index 100%
rename from t/ESITest/lib/ESITest.pm
rename to t/lib/ESITest.pm