projects
/
dbsrgits/DBIx-Class-Historic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Patch for ? in NoBindVars data from Tom Hukins
[dbsrgits/DBIx-Class-Historic.git]
/
t
/
91debug.t
1
use strict;
2
use warnings;
3
4
use Test::More;
5
use lib qw(t/lib);
6
use DBICTest;
7
8
my $schema = DBICTest->init_schema();
9
10
plan tests => 2;
11
12
ok ( $schema->storage->debug(1), 'debug' );
13
ok ( defined(
14
$schema->storage->debugfh(
15
IO::File->new('t/var/sql.log', 'w')
16
)
17
),
18
'debugfh'
19
);
20
21
1;