The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use lib 't/lib';
use Test::More;
use Test::Fatal;

like(exception {
   require VerifySchema;
}, qr/^Derp/, 'Schema verify checks all input');

done_testing;