'JSON::Syck' => 0.26,
'Data::Dump::Streamer' => 2.05,
'Hash::Merge' => 0.10,
+ 'DBD::SQLite' => 1.14,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DBIx-Class-Fixtures-*' },
$tmp_fixture_dir->rmtree;
}
$self->msg("- creating temp dir");
- dircopy(dir($fixture_dir, $schema->source($_)->from), dir($tmp_fixture_dir, $schema->source($_)->from)) for $schema->sources;
+ dircopy(dir($fixture_dir, $schema->source($_)->from), dir($tmp_fixture_dir, $schema->source($_)->from)) for grep { -e dir($fixture_dir, $schema->source($_)->from) } $schema->sources;
eval { $schema->storage->dbh->do('SET foreign_key_checks=0') };