Author: jkeenan
Date: Wed Jan 16 19:11:51 2008
New Revision: 24931

Modified:
   branches/revision/t/distro/file_metadata.t

Log:
Rather than having file consult ::Revision::current to see whether this is a 
repository checkout, simply collect the output of 'svn ls .' just as we do for 
svk.

Modified: branches/revision/t/distro/file_metadata.t
==============================================================================
--- branches/revision/t/distro/file_metadata.t  (original)
+++ branches/revision/t/distro/file_metadata.t  Wed Jan 16 19:11:51 2008
@@ -241,7 +241,7 @@
             plan skip_all => q{git svn file metadata not retained};
         }
     }
-    elsif ( !( $Parrot::Revision::current or `svk ls .` ) ) {
+    elsif ( !( `svn ls .` or `svk ls .` ) ) {
         plan skip_all => 'not a working copy';
     }
     else { plan tests => 4 }

Reply via email to