Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Locale-Maketext CPAN distribution.

Report information
The Basics
Id: 76169
Status: new
Priority: 0/
Queue: Locale-Maketext

People
Owner: Nobody in particular
Requestors: CELOGEEK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.22
Fixed in: (no value)



Subject: Fix check glob
I have fix a glob search in t/01_about_verbose.t The next Text::More version will add stuff in name space, and one of them is a Scalar. So to prevent looking for something wrong, I check the if the ref is a glob.
Subject: fix-glob-search.txt
diff --git a/t/01_about_verbose.t b/t/01_about_verbose.t index 88a74eb..a393201 100644 --- a/t/01_about_verbose.t +++ b/t/01_about_verbose.t @@ -40,7 +40,7 @@ while(@stack) { } elsif ( defined *{$this . '::ISA'} or defined &{$this . '::import'} - or ($this ne '' and grep defined *{$_}{'CODE'}, values %{$this . '::'}) + or ($this ne '' and grep {defined $_ && ref $_ eq 'GLOB' && defined *{$_}{'CODE'}} values %{$this . '::'}) # If it has an ISA, an import, or any subs... ) { # It's a class/module with no version.