Dave Cross: Still Munging Data With Perl: Online event - Mar 27 Learn more

use strict;
use lib qw(t/lib);
plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt_sqlite')
unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt_sqlite');
my $schema = DBICTest->init_schema(
no_deploy => 1, # Deploying would cause an early rebless
);
is(
ref $schema->storage, 'DBIx::Class::Storage::DBI',
'Starting with generic storage'
);
# Calling date_time_parser should cause the storage to be reblessed,
# so that we can pick up datetime_parser_type from subclasses
my $parser = $schema->storage->datetime_parser();
is($parser, 'DateTime::Format::SQLite', 'Got expected storage-set datetime_parser');
isa_ok($schema->storage, 'DBIx::Class::Storage::DBI::SQLite', 'storage');
done_testing;