[Jifty-commit] r7203 - jifty/trunk/t/TestApp-RestartServer/t

Jifty commits jifty-commit at lists.jifty.org
Tue Jun 9 10:43:30 EDT 2009


Author: ishigaki
Date: Tue Jun  9 10:43:29 2009
New Revision: 7203

Modified:
   jifty/trunk/t/TestApp-RestartServer/t/restart.t

Log:
restart test doesn't work on Win32 as always


Modified: jifty/trunk/t/TestApp-RestartServer/t/restart.t
==============================================================================
--- jifty/trunk/t/TestApp-RestartServer/t/restart.t	(original)
+++ jifty/trunk/t/TestApp-RestartServer/t/restart.t	Tue Jun  9 10:43:29 2009
@@ -1,13 +1,19 @@
 use strict;
 use warnings;
 
-use Test::More tests => 8;
+use Test::More;
 use File::Spec;
 use Jifty::Test::WWW::Mechanize;
 use FindBin qw($Bin);
 use Cwd;
 my $cwd;
 
+BEGIN {
+    plan skip_all => "live test doesn't work on Win32 at the moment" if $^O eq 'MSWin32';
+}
+
+plan tests => 8;
+
 # NOTE: we don't use Jifty's test server just 
 # because we want to test Jifty's real server
 


More information about the Jifty-commit mailing list