[Jifty-commit] r5544 - jifty/trunk/lib/Jifty/Test/WWW

Jifty commits jifty-commit at lists.jifty.org
Wed Jul 9 16:56:40 EDT 2008


Author: clkao
Date: Wed Jul  9 16:56:40 2008
New Revision: 5544

Modified:
   jifty/trunk/lib/Jifty/Test/WWW/Selenium.pm

Log:
fix missing win32 condition from r5511.

Modified: jifty/trunk/lib/Jifty/Test/WWW/Selenium.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Test/WWW/Selenium.pm	(original)
+++ jifty/trunk/lib/Jifty/Test/WWW/Selenium.pm	Wed Jul  9 16:56:40 2008
@@ -41,7 +41,8 @@
     my $server = shift;
     my %args = @_;
 
-    $class->_skip_rest("live test doesn't work on Win32 at the moment");
+    $class->_skip_rest("live test doesn't work on Win32 at the moment")
+		if $^O eq 'MSWin32';
 
     $ENV{JIFTY_OPENID_WHITELIST_HOST} = $ENV{SELENIUM_RC_TEST_AGAINST} || 'localhost';
 


More information about the Jifty-commit mailing list