From: John Napiorkowski Date: Tue, 21 Apr 2015 19:48:09 +0000 (-0500) Subject: Merge branch 'topic/parallelize-tests' of https://github.com/RsrchBoy/DBIx-Class... X-Git-Tag: v1.001_030~6^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dae128233dce5699a01fd021787b041b744c6525;p=dbsrgits%2FDBIx-Class-Fixtures.git Merge branch 'topic/parallelize-tests' of https://github.com/RsrchBoy/DBIx-Class-Fixtures into RsrchBoy-topic/parallelize-tests --- dae128233dce5699a01fd021787b041b744c6525 diff --cc t/07-dump-all.t index 498a4db,482ad41..111bfd6 --- a/t/07-dump-all.t +++ b/t/07-dump-all.t @@@ -6,15 -6,18 +6,18 @@@ use lib qw(t/lib) use DBICTest; use Path::Class; use Data::Dumper; + use Test::TempDir::Tiny; use IO::All; + + my $tempdir = tempdir; use if $^O eq 'MSWin32','Devel::Confess'; -plan tests => 16; +plan tests => 18; # set up and populate schema - ok(my $schema = DBICTest->init_schema( ), 'got schema'); + ok(my $schema = DBICTest->init_schema(db_dir => $tempdir, ), 'got schema'); my $config_dir = io->catfile(qw't var configs')->name; - my $fixture_dir = io->catfile(qw't var fixtures')->name; + my $fixture_dir = $tempdir; # do dump {