final changes for 08004 dist
[dbsrgits/DBIx-Class.git] / t / 91debug.t
CommitLineData
004d31fb 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
8my $schema = DBICTest->init_schema();
9
10plan tests => 2;
11
12ok ( $schema->storage->debug(1), 'debug' );
13ok ( defined(
14 $schema->storage->debugfh(
15 IO::File->new('t/var/sql.log', 'w')
16 )
17 ),
18 'debugfh'
19 );
20
211;