stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / aggregate / to_app.t
1 use strict;
2 use warnings;
3 use FindBin;
4 use lib "$FindBin::Bin/../lib";
5 use TestApp;
6 use Test::More;
7
8 ok(TestApp->can('to_app'));
9 is(ref(TestApp->to_app), 'CODE');
10
11 done_testing;