[svk-commit] r3067 - trunk/t/mirror

nobody at bestpractical.com nobody at bestpractical.com
Thu Aug 14 06:36:43 EDT 2008


Author: ilmari
Date: Thu Aug 14 06:36:26 2008
New Revision: 3067

Modified:
   trunk/t/mirror/sync-bootstrap-resume.t
   trunk/t/mirror/sync-bootstrap.t

Log:
Skip bootstrap tests if SVK::Dump is missing

Modified: trunk/t/mirror/sync-bootstrap-resume.t
==============================================================================
--- trunk/t/mirror/sync-bootstrap-resume.t	(original)
+++ trunk/t/mirror/sync-bootstrap-resume.t	Thu Aug 14 06:36:26 2008
@@ -3,6 +3,7 @@
 use Test::More;
 use SVK::Test;
 eval { require SVN::Mirror; 1 } or plan skip_all => 'require SVN::Mirror';
+eval { require SVN::Dump; 1 } or plan skip_all => 'require SVN::Dump';
 plan tests => 7;
 
 my ($xd, $svk) = build_test('test', 'm2', );

Modified: trunk/t/mirror/sync-bootstrap.t
==============================================================================
--- trunk/t/mirror/sync-bootstrap.t	(original)
+++ trunk/t/mirror/sync-bootstrap.t	Thu Aug 14 06:36:26 2008
@@ -3,6 +3,7 @@
 use Test::More;
 use SVK::Test;
 eval { require SVN::Mirror; 1 } or plan skip_all => 'require SVN::Mirror';
+eval { require SVN::Dump; 1 } or plan skip_all => 'require SVN::Dump';
 plan tests => 8;
 
 my ($xd, $svk) = build_test('test', 'm2', 'm3');


More information about the svk-commit mailing list