Fix for dist versions
[catagits/Gitalist.git] / script / gitalist_test.pl
CommitLineData
89de6a33 1#!/usr/bin/env perl
42b626cd 2use FindBin;
4b3ff1cd 3BEGIN {
4 my $env = "$FindBin::Bin/script/env";
5 if (-r $env) {
6 do $env or die $@;
7 }
8}
89de6a33 9
df097c84 10use Catalyst::ScriptRunner;
11Catalyst::ScriptRunner->run('Gitalist','Test');
89de6a33 12
131;
14
15=head1 NAME
16
17gitalist_test.pl - Catalyst Test
18
19=head1 SYNOPSIS
20
21gitalist_test.pl [options] uri
22
23 Options:
24 -help display this help and exits
25
26 Examples:
27 gitalist_test.pl http://localhost/some_action
28 gitalist_test.pl /some_action
29
30 See also:
31 perldoc Catalyst::Manual
32 perldoc Catalyst::Manual::Intro
33
34=head1 DESCRIPTION
35
36Run a Catalyst action from the command line.
37
38=head1 AUTHORS
39
40Catalyst Contributors, see Catalyst.pm
41
42=head1 COPYRIGHT
43
44This library is free software. You can redistribute it and/or modify
45it under the same terms as Perl itself.
46
47=cut