Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class-Historic.git] / t / cdbi / 02-Film.t
index 2eb4f05..5ef43bb 100644 (file)
@@ -35,7 +35,7 @@ is(Film->__driver, "SQLite", "Driver set correctly");
   eval { my $id = Film->title };
   #like $@, qr/class method/, "Can't get title with no object";
   ok $@, "Can't get title with no object";
-} 
+}
 
 eval { my $duh = Film->insert; };
 like $@, qr/create needs a hashref/, "needs a hashref";
@@ -229,7 +229,7 @@ ok(
 
 # Test that a disconnect doesnt harm anything.
 {
-    # SQLite is loud on disconnect/reconnect. 
+    # SQLite is loud on disconnect/reconnect.
     # This is solved in DBIC but not in ContextualFetch
     local $SIG{__WARN__} = sub {
       warn @_ unless $_[0] =~
@@ -400,7 +400,7 @@ SKIP: {
   my $btaste4 = Film->retrieve('Bad Taste');
   isnt refaddr $btaste2, refaddr $btaste4,
     "Clearing cache and retrieving again gives new object";
+
   $btaste=Film->insert({
     Title             => 'Bad Taste 2',
     Director          => 'Peter Jackson',
@@ -410,5 +410,5 @@ SKIP: {
   $btaste2 = Film->retrieve('Bad Taste 2');
   is refaddr $btaste, refaddr $btaste2,
     "Creating and retrieving gives ref to same object";
+
 }