Fixup several tests silently broken by 12e7015a
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Base.pm
1 package #hide from pause
2   DBICTest::Base;
3
4 use strict;
5 use warnings;
6
7 use DBICTest::Util;
8
9 # FIXME - Carp::Skip should somehow allow for augmentation based on
10 # mro::get_linear_isa or somesuch...
11 sub _skip_namespace_frames { '^DBICTest' }
12
13 1;