Erm, the test app for comparison needs to be generated with the current code, or...
[catagits/Catalyst-Devel.git] / t / TestAppForComparison / Makefile.PL
CommitLineData
26e2c891 1#!/usr/bin/env perl
057cf470 2# IMPORTANT: if you delete this file your app will not work as
26e2c891 3# expected. You have been warned.
057cf470 4use inc::Module::Install;
5
6name 'TestAppForComparison';
7all_from 'lib/TestAppForComparison.pm';
8
26e2c891 9requires 'Catalyst::Runtime' => '5.80004';
057cf470 10requires 'Catalyst::Plugin::ConfigLoader';
11requires 'Catalyst::Plugin::Static::Simple';
12requires 'Catalyst::Action::RenderView';
13requires 'parent';
14requires 'Config::General'; # This should reflect the config file format you've chosen
15 # See Catalyst::Plugin::ConfigLoader for supported formats
16catalyst;
17
18install_script glob('script/*.pl');
19auto_install;
20WriteAll;