[Bast-commits] r6095 - trunk/DBIx-Class-EncodedColumn/t

dandv at dev.catalyst.perl.org dandv at dev.catalyst.perl.org
Fri May 1 15:37:45 GMT 2009


Author: dandv
Date: 2009-05-01 15:37:44 +0000 (Fri, 01 May 2009)
New Revision: 6095

Modified:
   trunk/DBIx-Class-EncodedColumn/t/02digest.t
Log:
Comprehensive indent at 2 places in EncodedColumn's 02digest.t


Modified: trunk/DBIx-Class-EncodedColumn/t/02digest.t
===================================================================
--- trunk/DBIx-Class-EncodedColumn/t/02digest.t	2009-05-01 15:27:21 UTC (rev 6094)
+++ trunk/DBIx-Class-EncodedColumn/t/02digest.t	2009-05-01 15:37:44 UTC (rev 6095)
@@ -147,10 +147,10 @@
 #6
 if ( $pgp_ok ) {
   my $row = $rs->create( {
-      dummy_col          => 'Dummy Column',
-      pgp_col_passphrase => 'Test Encrypted Column with Passphrase',
-      pgp_col_key        => 'Test Encrypted Column with Key Exchange',
-      pgp_col_key_ps     => 'Test Encrypted Column with Key Exchange + Pass',
+    dummy_col          => 'Dummy Column',
+    pgp_col_passphrase => 'Test Encrypted Column with Passphrase',
+    pgp_col_key        => 'Test Encrypted Column with Key Exchange',
+    pgp_col_key_ps     => 'Test Encrypted Column with Key Exchange + Pass',
   } );
 
   like($row->pgp_col_passphrase, qr/BEGIN PGP MESSAGE/, 'Passphrase encrypted');
@@ -158,21 +158,21 @@
   like($row->pgp_col_key_ps, qr/BEGIN PGP MESSAGE/, 'Key+Passphrase encrypted');
 
   is(
-      $row->decrypt_pgp_passphrase('Secret Words'),
-      'Test Encrypted Column with Passphrase',
-      'Passphrase decryption/encryption'
+    $row->decrypt_pgp_passphrase('Secret Words'),
+    'Test Encrypted Column with Passphrase',
+    'Passphrase decryption/encryption'
   );
 
   is(
-      $row->decrypt_pgp_key,
-      'Test Encrypted Column with Key Exchange',
-      'Key Exchange decryption/encryption'
+    $row->decrypt_pgp_key,
+    'Test Encrypted Column with Key Exchange',
+    'Key Exchange decryption/encryption'
   );
 
   is(
-      $row->decrypt_pgp_key_ps('Secret Words'),
-      'Test Encrypted Column with Key Exchange + Pass',
-      'Secured Key Exchange decryption/encryption'
+    $row->decrypt_pgp_key_ps('Secret Words'),
+    'Test Encrypted Column with Key Exchange + Pass',
+    'Secured Key Exchange decryption/encryption'
   );
 
 




More information about the Bast-commits mailing list