Add a test for find_attribute_by_name() using t::lib::Test::Mouse
[gitmo/Mouse.git] / t / 037-dont-load-test-exception.t
1 package Foo;
2 use strict;
3 use warnings;
4 use Test::More tests => 1;
5 use Mouse;
6
7 is $INC{'Test/Exception.pm'}, undef, "don't load Test::Exception on production environment";