Introduce the describe_class_methods() utility function
[dbsrgits/DBIx-Class.git] / t / storage / txn.t
index 9a462bf..9af0040 100644 (file)
@@ -6,6 +6,7 @@ use warnings;
 use Test::More;
 use Test::Warn;
 use Test::Exception;
+use Errno ();
 
 use DBICTest;
 
@@ -210,12 +211,11 @@ sub _test_forking_action {
 
   SKIP: for my $count (1 .. 5) {
 
-    skip 'Weird DBI General Protection Faults, skip forking tests (RT#63104)', 5
+    skip 'FIXME: Weird DBI General Protection Faults, skip forking tests (RT#63104)', 5
       if $^O eq 'MSWin32';
 
     my $pid = fork();
     if( ! defined $pid ) {
-
       skip "EAGAIN encountered, your system is likely bogged down: skipping forking test", 1
         if $! == Errno::EAGAIN();