X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fdeploy_methods%2Fsql_translator_protoschema_transform.t;h=c91f415288249eaad4aa0894e8a4f3d6c79be05e;hb=2482377b70d4cfe36925a534c60c76898878601a;hp=d0ce6cfc85d78db1cf11b58279575cb30142e3cc;hpb=f3b5161e466df2a94f2704177f0173e7d940c4d5;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git diff --git a/t/deploy_methods/sql_translator_protoschema_transform.t b/t/deploy_methods/sql_translator_protoschema_transform.t index d0ce6cf..c91f415 100644 --- a/t/deploy_methods/sql_translator_protoschema_transform.t +++ b/t/deploy_methods/sql_translator_protoschema_transform.t @@ -4,19 +4,17 @@ use strict; use warnings; use Test::More; -use Test::Exception; use lib 't/lib'; use DBICDHTest; use aliased 'DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator'; -use File::Spec::Functions; +use File::Spec::Functions qw(catfile splitdir); use File::Path qw(rmtree mkpath); +use File::Temp qw(tempfile tempdir); my $dbh = DBICDHTest::dbh(); my @connection = (sub { $dbh }, { ignore_version => 1 }); -my $sql_dir = 't/sql'; - -DBICDHTest::ready; +my $sql_dir = tempdir( CLEANUP => 1 ); VERSION1: { use_ok 'DBICVersion_v1'; @@ -44,23 +42,23 @@ VERSION2: { }); $dm->prepare_deploy; - mkpath(catfile(qw( t sql _preprocess_schema upgrade 1.0-2.0 ))); + mkpath(catfile(splitdir($sql_dir), qw(_preprocess_schema upgrade 1.0-2.0 ))); open my $prerun, '>', - catfile(qw( t sql _preprocess_schema upgrade 1.0-2.0 003-semiautomatic.pl )); + catfile(splitdir($sql_dir), qw(_preprocess_schema upgrade 1.0-2.0 003-semiautomatic.pl )); + my (undef, $fn) = tempfile(OPEN => 0); print {$prerun} - 'sub { - use File::Touch; - touch(q(robotparty)) - if $_[0]->isa("SQL::Translator::Schema") - && $_[1]->isa("SQL::Translator::Schema"); - }'; + qq^sub { + open my \$fh, ">", '$fn' + if \$_[0]->isa("SQL::Translator::Schema") + && \$_[1]->isa("SQL::Translator::Schema"); + }^; close $prerun; $dm->prepare_upgrade({ from_version => '1.0', to_version => '2.0', version_set => [qw(1.0 2.0)] }); - ok -e 'robotparty', 'intermediate script ran with the right args'; + ok -e $fn, 'intermediate script ran with the right args'; $dm->upgrade_single_step({ version_set => [qw( 1.0 2.0 )] }); } done_testing;