The nginx bullshit can just die
[catagits/Catalyst-Runtime.git] / t / custom_exception_class_simple.t
CommitLineData
08f9c848 1#!/usr/bin/env perl
2
3use strict;
4use warnings;
5use FindBin qw/$Bin/;
6use lib "$Bin/lib";
41a8bf1f 7use Test::More tests => 2;
08f9c848 8use Test::Exception;
9
10lives_ok {
11 require TestAppClassExceptionSimpleTest;
12} 'Can load application';
41a8bf1f 13
14
15lives_ok {
16 Catalyst::Exception->throw
17} 'throw is properly stubbed out';
18
19
20