The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl
use strict;
use Test::More tests => 1;
BEGIN
{
use lib File::Spec->catdir( File::Spec->curdir(), "t", "lib" );
}
{
my $ff = File::Find::Object->new( {}, "t/", );
my @results;
push @results, $ff->next();
# TEST
is_deeply( \@results, ["t"], "t has no trailing slash" );
}