%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/self/root/usr/local/share/perl5/Test/Deep/
Upload File :
Create Path :
Current File : //proc/self/root/usr/local/share/perl5/Test/Deep/ArrayEach.pm

use strict;
use warnings;

package Test::Deep::ArrayEach;

use Test::Deep::Cmp;
use Scalar::Util ();

sub init
{
	my $self = shift;

	my $val = shift;

	$self->{val} = $val;
}

sub descend
{
	my $self = shift;
	my $got = shift;

  return unless Scalar::Util::reftype($got) eq 'ARRAY';
	my $exp = [ ($self->{val}) x @$got ];

	return Test::Deep::descend($got, $exp);
}

sub renderExp
{
  my $self = shift;
  my $exp = shift;

	return '[ ' . $self->SUPER::renderExp($self->{val}) . ', ... ]';
}

1;

Zerion Mini Shell 1.0