X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F81transactions.t;h=027ba768ec89b763d88330fdc05c345575c9d50f;hb=59d93f02996d7573c0d1daa6efb97d44e4132f56;hp=2b409fa607193e38fbf4ec72fa88b469eadafbe9;hpb=a778f387401f12b9823aeab5afd200b3623d31a8;p=dbsrgits%2FDBIx-Class.git diff --git a/t/81transactions.t b/t/81transactions.t index 2b409fa..027ba76 100644 --- a/t/81transactions.t +++ b/t/81transactions.t @@ -8,7 +8,7 @@ use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 63; +plan tests => 64; my $code = sub { my ($artist, @cd_titles) = @_; @@ -235,8 +235,14 @@ my $fail_code = sub { $schema2->txn_begin(); }; my $err = $@; - ok(($err eq ''), 'Pre-connection nested transactions.'); + ok(! $err, 'Pre-connection nested transactions.'); + + # although not connected DBI would still warn about rolling back at disconnect + $schema2->txn_rollback; + $schema2->txn_rollback; + $schema2->storage->disconnect; } +$schema->storage->disconnect; # Test txn_scope_guard { @@ -254,7 +260,7 @@ my $fail_code = sub { }); $guard->commit; - } qr/No such column made_up_column .*? at .*?81transactions.t line \d+/, "Error propogated okay"; + } qr/No such column made_up_column .*? at .*?81transactions.t line \d+/s, "Error propogated okay"; ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); @@ -266,12 +272,17 @@ my $fail_code = sub { ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); - eval { - # The 0 arg says done die, just let the scope guard go out of scope + my $w; + local $SIG{__WARN__} = sub { $w = shift }; + + # The 0 arg says don't die, just let the scope guard go out of scope # forcing a txn_rollback to happen outer($schema, 0); + + like ($w, qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or an error/, 'Out of scope warning detected'); }; + local $TODO = "Work out how this should work"; is($@, "Not sure what we want here, but something", "Rollback okay");