canged prereq for D:D to ensure fix of method call issue
[catagits/CatalystX-Declare.git] / t / 030_controllers.t
CommitLineData
744e2821 1#!/usr/bin/env perl
2use strict;
3use warnings;
4
5use FindBin;
6use lib "$FindBin::Bin/lib";
7
8use Test::More;
9
10use aliased 'TestApp::Controller::TestController';
11
12ok +(my $meta = TestController->meta), 'controller has meta';
13
14ok $meta->has_method('ctrl_method'), 'method is available in controller';
15ok $meta->has_method('ctrl_action'), 'action method is available in controller';
16
17done_testing;