fewer mega long lines
Arthur Axel "fREW" Schmidt [Wed, 27 Jan 2010 07:27:56 +0000 (07:27 +0000)]
t/01test.t
t/02noautodeploy.t

index d47c639..8f60c2b 100644 (file)
@@ -15,21 +15,40 @@ BEGIN {
 my $schema = DBICTest->init_schema(no_populate => 1);
 
 ok($schema, 'Created a Schema');
-isa_ok($schema->_journal_schema, 'DBIx::Class::Schema::Journal::DB', 'Actually have a schema object for the journaling');
-isa_ok($schema->_journal_schema->source('CDAuditHistory'), 'DBIx::Class::ResultSource', 'CDAuditHistory source exists');
-isa_ok($schema->_journal_schema->source('ArtistAuditLog'), 'DBIx::Class::ResultSource', 'ArtistAuditLog source exists');
+
+isa_ok(
+   $schema->_journal_schema,
+   'DBIx::Class::Schema::Journal::DB',
+   'Actually have a schema object for the journaling'
+);
+
+isa_ok(
+   $schema->_journal_schema->source('CDAuditHistory'),
+   'DBIx::Class::ResultSource',
+   'CDAuditHistory source exists'
+);
+
+isa_ok(
+   $schema->_journal_schema->source('ArtistAuditLog'),
+   'DBIx::Class::ResultSource',
+   'ArtistAuditLog source exists'
+);
 
 my $artist;
 my $new_cd = $schema->txn_do( sub {
     my $current_changeset = $schema->_journal_schema->_current_changeset;
-    ok( $current_changeset, "have a current changeset" );
+    ok( $current_changeset, 'have a current changeset' );
 
     $artist = $schema->resultset('Artist')->create({
         name => 'Fred Bloggs',
     });
 
     $schema->txn_do(sub {
-        is( $current_changeset, $schema->_journal_schema->_current_changeset, "nested txn doesn't create a new changeset" );
+        is(
+           $current_changeset,
+           $schema->_journal_schema->_current_changeset,
+           q{nested txn doesn't create a new changeset}
+        );
         return $schema->resultset('CD')->create({
             title => 'Angry young man',
             artist => $artist,
@@ -37,22 +56,29 @@ my $new_cd = $schema->txn_do( sub {
         });
     });
 });
-isa_ok($new_cd, 'DBIx::Class::Journal', 'Created CD object');
-
-is( $schema->_journal_schema->_current_changeset, undef, "no current changeset" );
+isa_ok(
+   $new_cd,
+   'DBIx::Class::Journal',
+   'Created CD object'
+);
+
+is(
+   $schema->_journal_schema->_current_changeset,
+   undef, 'no current changeset'
+);
 eval { $schema->_journal_schema->current_changeset };
-ok( $@, "causes error" );
+ok( $@, 'causes error' );
 
-my $search = $schema->_journal_schema->resultset('CDAuditLog')->search();
+my $search = $schema->_journal_schema->resultset('CDAuditLog')->search;
 ok($search->count, 'Created an entry in the CD audit log');
 
-$schema->txn_do( sub {
+$schema->txn_do(sub {
     $new_cd->year(2003);
     $new_cd->update;
-} );
+});
 
 is($new_cd->year, 2003,  'Changed year to 2003');
-my $cdah = $schema->_journal_schema->resultset('CDAuditHistory')->search();
+my $cdah = $schema->_journal_schema->resultset('CDAuditHistory')->search;
 ok($cdah->count, 'Created an entry in the CD audit history');
 
 $schema->txn_do( sub {
@@ -61,7 +87,7 @@ $schema->txn_do( sub {
         artist => $artist,
         year => 1999,
     });
-} );
+});
 
 
 my %id = map { $_ => $new_cd->get_column($_) } $new_cd->primary_columns;
@@ -72,9 +98,12 @@ $schema->txn_do( sub {
 
 {
     my $alentry = $search->find(\%id);
-    ok($alentry, "got log entry");
+    ok($alentry, 'got log entry');
     ok(defined($alentry->deleted), 'Deleted set in audit_log');
-    cmp_ok( $alentry->deleted->id, ">", $alentry->created->id, "deleted is after created" );
+    cmp_ok(
+       $alentry->deleted->id, '>', $alentry->created->id,
+       'deleted is after created'
+    );
 }
 
 $new_cd = $schema->txn_do( sub {
@@ -88,9 +117,12 @@ $new_cd = $schema->txn_do( sub {
 
 {
     my $alentry = $search->find(\%id);
-    ok($alentry, "got log entry");
+    ok($alentry, 'got log entry');
     ok(defined($alentry->deleted), 'Deleted set in audit_log');
-    cmp_ok( $alentry->deleted->id, "<", $alentry->created->id, "deleted is before created (recreated)" );
+    cmp_ok(
+       $alentry->deleted->id, '<', $alentry->created->id,
+       'deleted is before created (recreated)'
+    );
 }
 
 $schema->changeset_user(1);
index 6e70f31..f33aa9d 100644 (file)
@@ -15,17 +15,29 @@ BEGIN {
 my $schema = DBICTest->init_schema(no_populate => 1, no_deploy => 1);
 
 ok($schema, 'Created a Schema');
-isa_ok($schema->_journal_schema, 'DBIx::Class::Schema::Journal::DB', 'Actually have a schema object for the journaling');
-isa_ok($schema->_journal_schema->source('CDAuditHistory'), 'DBIx::Class::ResultSource', 'CDAuditHistory source exists');
-isa_ok($schema->_journal_schema->source('ArtistAuditLog'), 'DBIx::Class::ResultSource', 'ArtistAuditLog source exists');
+isa_ok(
+       $schema->_journal_schema,
+       'DBIx::Class::Schema::Journal::DB',
+       'Actually have a schema object for the journaling'
+);
+isa_ok(
+       $schema->_journal_schema->source('CDAuditHistory'),
+       'DBIx::Class::ResultSource',
+       'CDAuditHistory source exists'
+);
+isa_ok(
+       $schema->_journal_schema->source('ArtistAuditLog'),
+       'DBIx::Class::ResultSource',
+       'ArtistAuditLog source exists'
+);
 
 my $count = eval {
     $schema->_journal_schema->resultset('ChangeLog')->count;
 };
 my $e = $@;
 
-is( $count, undef, "no count" );
-like( $e, qr/table.*changelog/, "missing table error" );
+is( $count, undef, 'no count' );
+like( $e, qr/table.*changelog/, 'missing table error' );
 
 $schema->journal_schema_deploy();