use JSON instead of JSON::Any to get rid of the CPAN Testers failures when only JSON...
[catagits/Catalyst-Controller-DBIC-API.git] / t / generic.t
1 use strict;
2 use warnings;
3 use lib 't/lib';
4 use Test::More;
5
6 {
7     eval "use Catalyst::Test 'TestAppCheckHasCol'";
8     like($@, qr/^Couldn't load class \(TestAppCheckHasCol\) because: Couldn't instantiate component "TestAppCheckHasCol::Controller::InvalidColumn", "Column 'foo' does not exist in ResultSet 'TestAppDB::Artist'/, 'check_has_column ok');
9 }
10
11 done_testing();