Initial Commit
This commit is contained in:
24
database/perl/lib/Test/Deep/ListMethods.pm
Normal file
24
database/perl/lib/Test/Deep/ListMethods.pm
Normal file
@@ -0,0 +1,24 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
package Test::Deep::ListMethods;
|
||||
|
||||
use base 'Test::Deep::Methods';
|
||||
|
||||
sub call_method
|
||||
{
|
||||
my $self = shift;
|
||||
|
||||
return [$self->SUPER::call_method(@_)];
|
||||
}
|
||||
|
||||
sub render_stack
|
||||
{
|
||||
my $self = shift;
|
||||
|
||||
my $var = $self->SUPER::render_stack(@_);
|
||||
|
||||
return "[$var]";
|
||||
}
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user