Test case using Exception::Class
[catagits/Catalyst-Runtime.git] / t / dead_test_class_exception.t
CommitLineData
08f9c848 1#!/usr/bin/env perl
2
3use strict;
4use warnings;
5use FindBin qw/$Bin/;
6use lib "$Bin/lib";
7use Test::More tests => 1;
8use Test::Exception;
9
10lives_ok {
11 require TestAppClassExceptionSimpleTest;
12} 'Can load application';
13
141;
15