The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Test::CallFlow::ArgCheck::Regexp

  die "Unfit" unless defined
    my $fit =
      Test::CallFlow::ArgCheck::Regexp->new( qr/^..$/ )->check( 0, [ 'foo' ] );

Checks arguments against a regular expression. See base class Test::CallFlow::ArgCheck.

FUNCTIONS

check

  $checker->check( 1, [ 'foo', 'bar' ] ) ? 'ok' : die;

Checks the argument at given position in referred array against a regular expression.