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