root/branches/release-40/t/lib/Test/Deep/Ignore.pm @ 2583

Revision 2583, 184 bytes (checked in by mpaschal, 18 months ago)

Add Test::Deep to t/lib, since we already use it in driver-tests.pl
BugzID: 79953

Line 
1use strict;
2use warnings;
3
4package Test::Deep::Ignore;
5
6use Test::Deep::Cmp;
7
8my $Singleton = __PACKAGE__->SUPER::new;
9
10sub new
11{
12        return $Singleton;
13}
14
15sub descend
16{
17        return 1;
18}
19
201;
Note: See TracBrowser for help on using the browser.