add minimum perl
[catagits/CatalystX-Declare.git] / t / 110_under_sequence.t
CommitLineData
fe864e80 1#!/usr/bin/env perl
2use strict;
3use warnings;
4
5use FindBin;
6use lib "$FindBin::Bin/lib";
7
8use Test::More;
9use Catalyst::Test 'TestApp';
10
11is get('/under_seq/foo'), 'foo', 'basic action';
12is get('/under_seq/bar/test_bar'), 'bar', 'first action in under scope';
13is get('/under_seq/baz/test_baz'), 'baz', 'following base and under scope';
14
15done_testing;
16
17