Skip Menu |

This queue is for tickets about the Plucene CPAN distribution.

Report information
The Basics
Id: 19845
Status: new
Priority: 0/
Queue: Plucene

People
Owner: Nobody in particular
Requestors: tony [...] tmtm.com
Cc:
AdminCc:

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



Subject: Can't check 'indexed' on an empty index
Date: Mon, 12 Jun 2006 20:19:19 +0100
To: bug-Plucene [...] rt.cpan.org
From: Tony Bowden <tony [...] tmtm.com>
use Plucene::Simple; use Test::More tests => 2; my $plucy = Plucene::Simple->open("./myindex"); my $result = eval { $plucy->indexed(1) }; is $@, undef, "No error"; ok !$result, "No results";