From: Matt S Trout Date: Fri, 6 Feb 2009 13:26:13 +0000 (-0500) Subject: import from final 03_ code without auth X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2Fcatbook-code.git;a=commitdiff_plain;h=cc003be0b27748d7b580743ca4c96720f2a591f5 import from final 03_ code without auth --- cc003be0b27748d7b580743ca4c96720f2a591f5 diff --git a/Changes b/Changes new file mode 100644 index 0000000..5f08813 --- /dev/null +++ b/Changes @@ -0,0 +1,4 @@ +This file documents the revision history for Perl extension LolCatalyst::Lite. + +0.01 2008-09-13 01:47:04 + - initial revision, generated by Catalyst diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..70fcd7d --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,24 @@ +# IMPORTANT: if you delete this file your app will not work as +# expected. you have been warned +use inc::Module::Install; + +name 'LolCatalyst-Lite'; +all_from 'lib/LolCatalyst/Lite.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 +requires 'Acme::LOLCAT'; +requires 'Catalyst::Plugin::Unicode'; +requires 'Catalyst::View::TT'; +requires 'Catalyst::View::JSON'; +requires 'Acme::Bleach'; # test +catalyst; + +install_script glob('script/*.pl'); +auto_install; +WriteAll; diff --git a/README b/README new file mode 100644 index 0000000..8fcfac6 --- /dev/null +++ b/README @@ -0,0 +1 @@ +Run script/lolcatalyst_lite_server.pl to test the application. diff --git a/lib/LolCatalyst/Lite.pm b/lib/LolCatalyst/Lite.pm new file mode 100644 index 0000000..ad8abc6 --- /dev/null +++ b/lib/LolCatalyst/Lite.pm @@ -0,0 +1,64 @@ +package LolCatalyst::Lite; + +use strict; +use warnings; + +use Catalyst::Runtime '5.70'; + +# Set flags and add plugins for the application +# +# -Debug: activates the debug mode for very useful log messages +# ConfigLoader: will load the configuration from a Config::General file in the +# application's home directory +# Static::Simple: will serve static files from the application's root +# directory + +use parent qw/Catalyst/; +use Catalyst qw/-Debug + ConfigLoader + Static::Simple/; +our $VERSION = '0.01'; + +# Configure the application. +# +# Note that settings in lolcatalyst_lite.conf (or other external +# configuration file that you set up manually) take precedence +# over this when using ConfigLoader. Thus configuration +# details given here can function as a default configuration, +# with a external configuration file acting as an override for +# local deployment. + +__PACKAGE__->config( name => 'LolCatalyst::Lite' ); + +# Start the application +__PACKAGE__->setup(); + + +=head1 NAME + +LolCatalyst::Lite - Catalyst based application + +=head1 SYNOPSIS + + script/lolcatalyst_lite_server.pl + +=head1 DESCRIPTION + +[enter your description here] + +=head1 SEE ALSO + +L, L + +=head1 AUTHOR + +Freya Jarrett + +=head1 LICENSE + +This library is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut + +1; diff --git a/lib/LolCatalyst/Lite/Controller/Root.pm b/lib/LolCatalyst/Lite/Controller/Root.pm new file mode 100644 index 0000000..dfe372c --- /dev/null +++ b/lib/LolCatalyst/Lite/Controller/Root.pm @@ -0,0 +1,47 @@ +package LolCatalyst::Lite::Controller::Root; + +use strict; +use warnings; +use parent 'Catalyst::Controller'; + +__PACKAGE__->config->{namespace} = ''; + +sub index :Path :Args(0) { + my ( $self, $c ) = @_; +} + +sub default :Path { + my ( $self, $c ) = @_; + $c->response->status(404); + $c->response->body( 'Page not found' ); +} + +sub translate :Local { + my ($self, $c) = @_; + my $lol = $c->req->body_params->{lol}; # only for a POST request + # $c->req->params->{lol} would catch GET or POST + # $c->req->query_params would catch GET params only + $c->stash( + lol => $lol, + result => $c->model('Translate')->translate($lol), + template => 'index.tt', + ); +} + +sub translate_service : Local { + my ($self, $c) = @_; + $c->forward('translate'); + $c->stash->{current_view} = 'Service'; +} + +sub end : ActionClass('RenderView') { + my ($self, $c) = @_; + my $errors = scalar @{$c->error}; + if ($errors) { + $c->res->status(500); + $c->res->body('internal server error'); + $c->clear_errors; + } +} + +1; diff --git a/lib/LolCatalyst/Lite/Model/Translate.pm b/lib/LolCatalyst/Lite/Model/Translate.pm new file mode 100644 index 0000000..b6e26ea --- /dev/null +++ b/lib/LolCatalyst/Lite/Model/Translate.pm @@ -0,0 +1,16 @@ +package LolCatalyst::Lite::Model::Translate; + +use strict; +use warnings; +use parent 'Catalyst::Model'; + +use Acme::LOLCAT (); +use Memoize; +memoize ('translate'); + +sub translate { + my ($self, $text) = @_; + return Acme::LOLCAT::translate($text); +} + +1; diff --git a/lib/LolCatalyst/Lite/View/Service.pm b/lib/LolCatalyst/Lite/View/Service.pm new file mode 100644 index 0000000..0385850 --- /dev/null +++ b/lib/LolCatalyst/Lite/View/Service.pm @@ -0,0 +1,31 @@ +package LolCatalyst::Lite::View::Service; + +use strict; +use base 'Catalyst::View::JSON'; + +=head1 NAME + +LolCatalyst::Lite::View::Service - Catalyst JSON View + +=head1 SYNOPSIS + +See L + +=head1 DESCRIPTION + +Catalyst JSON View. + +=head1 AUTHOR + +Freya Jarrett + +=head1 LICENSE + +This library is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut + +__PACKAGE__->config({ expose_stash => [ qw/lol result/ ] }); + +1; diff --git a/lib/LolCatalyst/Lite/View/Web.pm b/lib/LolCatalyst/Lite/View/Web.pm new file mode 100644 index 0000000..ce4c059 --- /dev/null +++ b/lib/LolCatalyst/Lite/View/Web.pm @@ -0,0 +1,31 @@ +package LolCatalyst::Lite::View::Web; + +use strict; +use base 'Catalyst::View::TT'; + +__PACKAGE__->config(TEMPLATE_EXTENSION => '.tt'); + +=head1 NAME + +LolCatalyst::Lite::View::Web - TT View for LolCatalyst::Lite + +=head1 DESCRIPTION + +TT View for LolCatalyst::Lite. + +=head1 AUTHOR + +=head1 SEE ALSO + +L + +Freya Jarrett + +=head1 LICENSE + +This library is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut + +1; diff --git a/lolcatalyst_lite.conf b/lolcatalyst_lite.conf new file mode 100644 index 0000000..3694c26 --- /dev/null +++ b/lolcatalyst_lite.conf @@ -0,0 +1,4 @@ +# rename this file to LolCatalyst::Lite.yml and put a : in front of "name" if +# you want to use yaml like in old versions of Catalyst +name LolCatalyst::Lite +default_view Web diff --git a/root/favicon.ico b/root/favicon.ico new file mode 100644 index 0000000..5ad723d Binary files /dev/null and b/root/favicon.ico differ diff --git a/root/index.tt b/root/index.tt new file mode 100644 index 0000000..e538702 --- /dev/null +++ b/root/index.tt @@ -0,0 +1,6 @@ +[% WRAPPER page.tt title = c.config.name ; END %] + [% IF result %]

[% lol _ ": " _ result %]

[% END %] +
+ + +
diff --git a/root/page.tt b/root/page.tt new file mode 100644 index 0000000..aed3d75 --- /dev/null +++ b/root/page.tt @@ -0,0 +1,12 @@ + + + +[% title %] + + + +[% content %] + + diff --git a/root/static/images/btn_120x50_built.png b/root/static/images/btn_120x50_built.png new file mode 100644 index 0000000..c709fd6 Binary files /dev/null and b/root/static/images/btn_120x50_built.png differ diff --git a/root/static/images/btn_120x50_built_shadow.png b/root/static/images/btn_120x50_built_shadow.png new file mode 100644 index 0000000..15142fe Binary files /dev/null and b/root/static/images/btn_120x50_built_shadow.png differ diff --git a/root/static/images/btn_120x50_powered.png b/root/static/images/btn_120x50_powered.png new file mode 100644 index 0000000..7249b47 Binary files /dev/null and b/root/static/images/btn_120x50_powered.png differ diff --git a/root/static/images/btn_120x50_powered_shadow.png b/root/static/images/btn_120x50_powered_shadow.png new file mode 100644 index 0000000..e6876c0 Binary files /dev/null and b/root/static/images/btn_120x50_powered_shadow.png differ diff --git a/root/static/images/btn_88x31_built.png b/root/static/images/btn_88x31_built.png new file mode 100644 index 0000000..007b5db Binary files /dev/null and b/root/static/images/btn_88x31_built.png differ diff --git a/root/static/images/btn_88x31_built_shadow.png b/root/static/images/btn_88x31_built_shadow.png new file mode 100644 index 0000000..ccf4624 Binary files /dev/null and b/root/static/images/btn_88x31_built_shadow.png differ diff --git a/root/static/images/btn_88x31_powered.png b/root/static/images/btn_88x31_powered.png new file mode 100644 index 0000000..8f0cd9f Binary files /dev/null and b/root/static/images/btn_88x31_powered.png differ diff --git a/root/static/images/btn_88x31_powered_shadow.png b/root/static/images/btn_88x31_powered_shadow.png new file mode 100644 index 0000000..aa776fa Binary files /dev/null and b/root/static/images/btn_88x31_powered_shadow.png differ diff --git a/root/static/images/catalyst_logo.png b/root/static/images/catalyst_logo.png new file mode 100644 index 0000000..21f1cac Binary files /dev/null and b/root/static/images/catalyst_logo.png differ diff --git a/script/lolcatalyst_lite_cgi.pl b/script/lolcatalyst_lite_cgi.pl new file mode 100755 index 0000000..39d23c7 --- /dev/null +++ b/script/lolcatalyst_lite_cgi.pl @@ -0,0 +1,37 @@ +#!/Users/fj/perl-bin/bin/perl -w + +BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' } + +use strict; +use warnings; +use FindBin; +use lib "$FindBin::Bin/../lib"; +use LolCatalyst::Lite; + +LolCatalyst::Lite->run; + +1; + +=head1 NAME + +lolcatalyst_lite_cgi.pl - Catalyst CGI + +=head1 SYNOPSIS + +See L + +=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/script/lolcatalyst_lite_create.pl b/script/lolcatalyst_lite_create.pl new file mode 100755 index 0000000..d08a97f --- /dev/null +++ b/script/lolcatalyst_lite_create.pl @@ -0,0 +1,74 @@ +#!/Users/fj/perl-bin/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( 'LolCatalyst::Lite', @ARGV ); + +1; + +=head1 NAME + +lolcatalyst_lite_create.pl - Create a new Catalyst Component + +=head1 SYNOPSIS + +lolcatalyst_lite_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: + lolcatalyst_lite_create.pl controller My::Controller + lolcatalyst_lite_create.pl controller My::Controller BindLex + lolcatalyst_lite_create.pl -mechanize controller My::Controller + lolcatalyst_lite_create.pl view My::View + lolcatalyst_lite_create.pl view MyView TT + lolcatalyst_lite_create.pl view TT TT + lolcatalyst_lite_create.pl model My::Model + lolcatalyst_lite_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\ + dbi:SQLite:/tmp/my.db + lolcatalyst_lite_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/script/lolcatalyst_lite_fastcgi.pl b/script/lolcatalyst_lite_fastcgi.pl new file mode 100755 index 0000000..309394d --- /dev/null +++ b/script/lolcatalyst_lite_fastcgi.pl @@ -0,0 +1,79 @@ +#!/Users/fj/perl-bin/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 LolCatalyst::Lite; + +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; + +LolCatalyst::Lite->run( + $listen, + { nproc => $nproc, + pidfile => $pidfile, + manager => $manager, + detach => $detach, + keep_stderr => $keep_stderr, + } +); + +1; + +=head1 NAME + +lolcatalyst_lite_fastcgi.pl - Catalyst FastCGI + +=head1 SYNOPSIS + +lolcatalyst_lite_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/script/lolcatalyst_lite_server.pl b/script/lolcatalyst_lite_server.pl new file mode 100755 index 0000000..eb4d20b --- /dev/null +++ b/script/lolcatalyst_lite_server.pl @@ -0,0 +1,114 @@ +#!/Users/fj/perl-bin/bin/perl -w + +BEGIN { + $ENV{CATALYST_ENGINE} ||= 'HTTP'; + $ENV{CATALYST_SCRIPT_GEN} = 31; + require Catalyst::Engine::HTTP; +} + +use strict; +use warnings; +use Getopt::Long; +use Pod::Usage; +use FindBin; +use lib "$FindBin::Bin/../lib"; + +my $debug = 0; +my $fork = 0; +my $help = 0; +my $host = undef; +my $port = $ENV{LOLCATALYST_LITE_PORT} || $ENV{CATALYST_PORT} || 3000; +my $keepalive = 0; +my $restart = $ENV{LOLCATALYST_LITE_RELOAD} || $ENV{CATALYST_RELOAD} || 0; +my $restart_delay = 1; +my $restart_regex = '(?:/|^)(?!\.#).+(?:\.yml$|\.yaml$|\.conf|\.pm)$'; +my $restart_directory = undef; +my $follow_symlinks = 0; + +my @argv = @ARGV; + +GetOptions( + 'debug|d' => \$debug, + 'fork' => \$fork, + 'help|?' => \$help, + 'host=s' => \$host, + 'port=s' => \$port, + 'keepalive|k' => \$keepalive, + 'restart|r' => \$restart, + 'restartdelay|rd=s' => \$restart_delay, + 'restartregex|rr=s' => \$restart_regex, + 'restartdirectory=s@' => \$restart_directory, + 'followsymlinks' => \$follow_symlinks, +); + +pod2usage(1) if $help; + +if ( $restart && $ENV{CATALYST_ENGINE} eq 'HTTP' ) { + $ENV{CATALYST_ENGINE} = 'HTTP::Restarter'; +} +if ( $debug ) { + $ENV{CATALYST_DEBUG} = 1; +} + +# This is require instead of use so that the above environment +# variables can be set at runtime. +require LolCatalyst::Lite; + +LolCatalyst::Lite->run( $port, $host, { + argv => \@argv, + 'fork' => $fork, + keepalive => $keepalive, + restart => $restart, + restart_delay => $restart_delay, + restart_regex => qr/$restart_regex/, + restart_directory => $restart_directory, + follow_symlinks => $follow_symlinks, +} ); + +1; + +=head1 NAME + +lolcatalyst_lite_server.pl - Catalyst Testserver + +=head1 SYNOPSIS + +lolcatalyst_lite_server.pl [options] + + Options: + -d -debug force debug mode + -f -fork handle each request in a new process + (defaults to false) + -? -help display this help and exits + -host host (defaults to all) + -p -port port (defaults to 3000) + -k -keepalive enable keep-alive connections + -r -restart restart when files get modified + (defaults to false) + -rd -restartdelay delay between file checks + -rr -restartregex regex match files that trigger + a restart when modified + (defaults to '\.yml$|\.yaml$|\.conf|\.pm$') + -restartdirectory the directory to search for + modified files, can be set mulitple times + (defaults to '[SCRIPT_DIR]/..') + -follow_symlinks follow symlinks in search directories + (defaults to false. this is a no-op on Win32) + See also: + perldoc Catalyst::Manual + perldoc Catalyst::Manual::Intro + +=head1 DESCRIPTION + +Run a Catalyst Testserver for this application. + +=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/script/lolcatalyst_lite_test.pl b/script/lolcatalyst_lite_test.pl new file mode 100755 index 0000000..db40bdb --- /dev/null +++ b/script/lolcatalyst_lite_test.pl @@ -0,0 +1,53 @@ +#!/Users/fj/perl-bin/bin/perl -w + +use strict; +use warnings; +use Getopt::Long; +use Pod::Usage; +use FindBin; +use lib "$FindBin::Bin/../lib"; +use Catalyst::Test 'LolCatalyst::Lite'; + +my $help = 0; + +GetOptions( 'help|?' => \$help ); + +pod2usage(1) if ( $help || !$ARGV[0] ); + +print request($ARGV[0])->content . "\n"; + +1; + +=head1 NAME + +lolcatalyst_lite_test.pl - Catalyst Test + +=head1 SYNOPSIS + +lolcatalyst_lite_test.pl [options] uri + + Options: + -help display this help and exits + + Examples: + lolcatalyst_lite_test.pl http://localhost/some_action + lolcatalyst_lite_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 diff --git a/t/01app.t b/t/01app.t new file mode 100644 index 0000000..296618f --- /dev/null +++ b/t/01app.t @@ -0,0 +1,47 @@ + use strict; + use warnings; +# use Test::More qw/no_plan/; +use Test::More tests => 13; + + + BEGIN { use_ok 'Catalyst::Test', 'LolCatalyst::Lite' } + use HTTP::Headers; + use HTTP::Request::Common; + + # GET request + + my $request = GET('http://localhost'); + my $response = request($request); + ok( $response = request($request), 'Request'); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/html', 'Response Content-Type' ); + like( $response->content, qr/Translate/, "contains translated string"); + + # test request to translate + + $request = POST( + 'http://localhost/translate', + 'Content-Type' => 'form-data', + 'Content' => [ + 'lol' => 'Can i have a cheese burger?', + ]); + + ok( $response = request($request), 'Request'); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/html', 'Response Content-Type' ); + like( $response->content, qr/CHEEZ/, "contains translated string"); + + # test request to translate_service + + $request = POST( + 'http://localhost/translate_service', + 'Content-Type' => 'form-data', + 'Content' => [ + 'lol' => 'Can i have a cheese burger?', + ]); + ok($response = request($request), 'Request'); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'application/json', 'Response Content-Type' ); + like( $response->content, qr/CHEEZ/, "contains translated string"); + + diff --git a/t/02pod.t b/t/02pod.t new file mode 100644 index 0000000..251640d --- /dev/null +++ b/t/02pod.t @@ -0,0 +1,9 @@ +use strict; +use warnings; +use Test::More; + +eval "use Test::Pod 1.14"; +plan skip_all => 'Test::Pod 1.14 required' if $@; +plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; + +all_pod_files_ok(); diff --git a/t/03podcoverage.t b/t/03podcoverage.t new file mode 100644 index 0000000..ae59d4c --- /dev/null +++ b/t/03podcoverage.t @@ -0,0 +1,9 @@ +use strict; +use warnings; +use Test::More; + +eval "use Test::Pod::Coverage 1.04"; +plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; +plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; + +all_pod_coverage_ok(); diff --git a/t/model_Translate.t b/t/model_Translate.t new file mode 100644 index 0000000..5d3bb13 --- /dev/null +++ b/t/model_Translate.t @@ -0,0 +1,6 @@ +use strict; +use warnings; +use Test::More tests => 1; + +BEGIN { use_ok 'LolCatalyst::Lite::Model::Translate' } + diff --git a/t/view_Service.t b/t/view_Service.t new file mode 100644 index 0000000..e40be64 --- /dev/null +++ b/t/view_Service.t @@ -0,0 +1,6 @@ +use strict; +use warnings; +use Test::More tests => 1; + +BEGIN { use_ok 'LolCatalyst::Lite::View::Service' } + diff --git a/t/view_Web.t b/t/view_Web.t new file mode 100644 index 0000000..d4d2fad --- /dev/null +++ b/t/view_Web.t @@ -0,0 +1,6 @@ +use strict; +use warnings; +use Test::More tests => 1; + +BEGIN { use_ok 'LolCatalyst::Lite::View::Web' } +