9 my $no_class = '_DBICTEST_NONEXISTENT_CLASS_';
11 my $schema = DBICTest->init_schema();
12 $schema->storage->datetime_parser_type($no_class);
14 my $event = $schema->resultset('Event')->find(1);
16 # test that datetime_undef_if_invalid does not eat the missing dep exception
18 my $dt = $event->starts_at;
19 } qr{Can't locate ${no_class}\.pm};