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

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

my $arr = array(1 .. 4);
my $left = $arr->rotate;
is_deeply
  [ $left->all ],
  [ 2, 3, 4, 1 ],
  'rotate default opts ok';
is_deeply
  [ $arr->all ],
  [ 1, 2, 3, 4 ],
  'original array intact';

is_deeply
  [ $arr->rotate(left => 1)->all ],
  [ 2, 3, 4, 1 ],
  'rotate leftwards ok';
is_deeply
  [ $arr->rotate(right => 1)->all ],
  [ 4, 1, 2, 3 ],
  'rotate rightwards ok';


ok array->rotate(left => 1)->is_empty,  'empty array rotate left ok';
ok array->rotate(right => 1)->is_empty, 'empty array rotate right ok';

eval {; $arr->rotate(left => 1, right => 1) };
like $@, qr/direction/, 'bad opts die ok';

done_testing