Extract two stateless DBIHacks routines into a utility package
[dbsrgits/DBIx-Class.git] / t / ordered / cascade_delete.t
index 8a95420..62463fa 100644 (file)
@@ -1,21 +1,17 @@
+BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
+
 use strict;
-use warnings;  
+use warnings;
 
 use Test::More;
 use Test::Exception;
-use lib qw(t/lib);
-use DBICTest;
 
-use POSIX qw(ceil);
+use DBICTest;
 
 my $schema = DBICTest->init_schema();
 
-plan tests => 1;
-
 {
-  my $artist = $schema->resultset ('Artist')->search ({}, { rows => 1})->single, # braindead sqlite
-
-  $schema->storage->debug (1);
+  my $artist = $schema->resultset ('Artist')->search ({}, { rows => 1})->single; # braindead sqlite
   my $cd = $schema->resultset ('CD')->create ({
     artist => $artist,
     title => 'Get in order',
@@ -30,4 +26,4 @@ plan tests => 1;
   lives_ok (sub { $cd->delete}, "Cascade delete on ordered has_many doesn't bomb");
 }
 
-1;
+done_testing;