afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-09-08 12:04 am

[dw-free] Many tests in t/ fail

[commit: http://hg.dwscoalition.org/dw-free/rev/ea715afa6e7e]

http://bugs.dwscoalition.org/show_bug.cgi?id=1721

Skip tests for directory; running without workers is known to not work right
now.

Patch by [personal profile] afuna.

Files modified:
  • t/directorysearch-extra.t
  • t/directorysearch.t
--------------------------------------------------------------------------------
diff -r b39481221928 -r ea715afa6e7e t/directorysearch-extra.t
--- a/t/directorysearch-extra.t	Mon Sep 07 23:57:08 2009 +0000
+++ b/t/directorysearch-extra.t	Tue Sep 08 00:03:45 2009 +0000
@@ -8,7 +8,8 @@ use LJ::Directory::Search;
 use LJ::Directory::Search;
 use LJ::ModuleCheck;
 if (LJ::ModuleCheck->have("LJ::UserSearch")) {
-    plan tests => 9;
+    # plan tests => 9;
+    plan skip_all => "User search without workers currently bitrotted";
 } else {
     plan 'skip_all' => "Need LJ::UserSearch module.";
     exit 0;
diff -r b39481221928 -r ea715afa6e7e t/directorysearch.t
--- a/t/directorysearch.t	Mon Sep 07 23:57:08 2009 +0000
+++ b/t/directorysearch.t	Tue Sep 08 00:03:45 2009 +0000
@@ -8,7 +8,8 @@ use LJ::Directory::Search;
 use LJ::Directory::Search;
 use LJ::ModuleCheck;
 if (LJ::ModuleCheck->have("LJ::UserSearch")) {
-    plan tests => 71;
+    # plan tests => 71;
+    plan skip_all => "User search without workers currently bitrotted";
 } else {
     plan 'skip_all' => "Need LJ::UserSearch module.";
     exit 0;
--------------------------------------------------------------------------------