Merge branch 'topic/parallelize-tests' of https://github.com/RsrchBoy/DBIx-Class...
John Napiorkowski [Tue, 21 Apr 2015 19:48:09 +0000 (14:48 -0500)]
1  2 
t/07-dump-all.t
t/lib/DBICTest.pm

diff --cc 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
  {
Simple merge