The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;
use FindBin qw/$Bin/;
use lib "$Bin/lib";
use Test::More tests => 2;
use Test::Exception;

lives_ok {
    require TestAppClassExceptionSimpleTest;
} 'Can load application';


lives_ok {
    Catalyst::Exception->throw
} 'throw is properly stubbed out';