Switch everything to autoclean. Add sanity tests to ensure appropriate modern perl...
[catagits/CatalystX-DynamicComponent.git] / t / 04_dynamicmodel.t
CommitLineData
7d26c84b 1use strict;
2use warnings;
3use Test::More tests => 3;
4
5use DynamicAppDemo;
6
7# Naughty, should make an app instance.
8my $model = DynamicAppDemo->model('One');
9
10ok $model;
11isa_ok $model, 'SomeModelClass';
12is $model->say_hello('world'), 'Hello world';
13