The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

package TestParser;
use base qw( Parser::MGC );

sub parse
{
   my $self = shift;

   $self->list_of( ",", sub {
      return $self->token_int;
   } );
}

package TestParser2;
use base qw( Parser::MGC );

sub parse
{
   my $self = shift;

   $self->list_of( ",", 'token_int' );
}

package main;

my $parser = TestParser->new;

is_deeply( $parser->from_string( "123" ), [ 123 ], '"123"' );
is_deeply( $parser->from_string( "4,5,6" ), [ 4, 5, 6 ], '"4,5,6"' );
is_deeply( $parser->from_string( "7, 8" ), [ 7, 8 ], '"7, 8"' );

# Trailing delimiter
is_deeply( $parser->from_string( "10,11,12," ), [ 10, 11, 12 ], '"10,11,12,"' );

is_deeply( TestParser2->new->from_string( "13,14" ), [ 13, 14 ], '"13,14" as method name' );

done_testing;