Fix building on perls with no . in @INC
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / AntiPattern / TrueZeroLen.pm
1 package DBICTest::AntiPattern::TrueZeroLen;
2
3 use warnings;
4 use strict;
5
6 use overload
7   'bool'   => sub { 1 },
8   '""'     => sub { '' },
9   fallback => 1
10 ;
11
12 sub new { bless {}, shift }
13
14 1;