Skip Menu |

This queue is for tickets about the Algorithm-IncludeExclude CPAN distribution.

Report information
The Basics
Id: 75695
Status: new
Priority: 0/
Queue: Algorithm-IncludeExclude

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

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



Subject: Unexpected exclude behavior
I would expect the following script to pass: #!/usr/bin/perl use strict; use Test::More 'no_plan'; use Algorithm::IncludeExclude; my $aie = Algorithm::IncludeExclude->new; $aie->include; $aie->exclude('foo', 'bar'); is $aie->evaluate('foo'), 1; __END__ But it doesn't. Regards, Slaven