The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict; use warnings FATAL => 'all';

BEGIN {
  unless (eval {; require Test::Without::Module; 1 } && !$@) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests require Test::Without::Module');
  }
}

use Test::Without::Module 'List::MoreUtils';
use Test::More;

use List::Objects::WithUtils 'array';

ok !List::Objects::WithUtils::Role::Array::USING_LIST_MOREUTILS,
  'not USING_LIST_MOREUTILS';

ok !array->indexes(sub { 1 })->has_any, 'empty indexes ok';

my $arr = array(qw/foo bar baz/);

my $idx = $arr->indexes(sub { $_ eq 'bar' });

is_deeply [ $idx->all ], [ 1 ],
  'indexes (single) ok';

is_deeply [ $idx->all ], [ $arr->indices(sub { $_ eq 'bar' })->all ],
  'indices alias ok';

$arr = array( 1 .. 10 );
$idx = $arr->indexes(sub { $_ % 2 == 0 });

is_deeply [ $idx->all ], [ 1, 3, 5, 7, 9 ],
  'indexes (multiple) ok';

done_testing