projects
/
dbsrgits/DBIx-Class-Historic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed up sqlt tests a bit and tried fixing 2 failing sqlt tests
[dbsrgits/DBIx-Class-Historic.git]
/
t
/
92storage.t
1
use strict;
2
use warnings;
3
4
use Test::More;
5
use lib qw(t/lib);
6
use DBICTest;
7
8
plan tests => 1;
9
10
my $schema = DBICTest->init_schema();
11
12
is( ref($schema->storage), 'DBIx::Class::Storage::DBI::SQLite',
13
'Storage reblessed correctly into DBIx::Class::Storage::DBI::SQLite' );
14
15
1;