i want some kick ass tests for this :)
[catagits/Catalyst-Runtime.git] / t / 05regexaction.t
1 package TestApp;
2
3 use Catalyst qw[-Engine=Test];
4
5 sub testregex : Regex(foo/(.*)) {
6         my ( $self, $c ) = @_;
7         $c->res->output( $c->req->snippets->[0] );
8 }
9
10 __PACKAGE__->setup();
11
12 package main;
13
14 use Test::More tests => 1;
15 use Catalyst::Test 'TestApp';
16
17 ok( get('/foo/bar') =~ /bar/ );