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

my $g = Grid::Transform->new(['a'..'o'], rows=>3);
is($g->alternate_row_direction, $g, 'returns self');
is_deeply([$g->grid], [qw(a b c d e j i h g f k l m n o)], 'grid');
is($g->rows, 3, 'rows');
is($g->columns, 5, 'columns');