Display xsubpp settings to make CPAN testers more informative
Fuji, Goro [Wed, 10 Nov 2010 03:54:31 +0000 (12:54 +0900)]
t/000-load.t

index b3132e2..5508bce 100644 (file)
@@ -9,10 +9,24 @@ require_ok 'Mouse::Role';
 
 no warnings 'uninitialized';
 
-diag "Testing Mouse/$Mouse::VERSION (", exists $INC{'Mouse/PurePerl.pm'} ? 'Pure Perl' : 'XS', ")";
+my $xs = !exists( $INC{'Mouse/PuprePerl.pm'} );
+
+diag "Testing Mouse/$Mouse::VERSION (", $xs ? 'XS' : 'Pure Perl', ")";
 
 diag "Soft dependency versions:";
 
 eval { require Moose };
 diag "    Class::MOP: $Class::MOP::VERSION";
 diag "    Moose: $Moose::VERSION";
+
+if($xs) { # display info for CPAN testers
+    if(open my $in, '<', 'Makefile') {
+        diag 'xsubpp settings:';
+        while(<$in>) {
+            if(/^XSUBPP/) {
+                diag $_;
+            }
+        }
+    }
+}
+