Do
view release on metacpan or search on metacpan
t/0.90/can/Data_Object_Args_stashed.t view on Meta::CPAN
use 5.014;
use strict;
use warnings;
use Test::More;
# POD
=name
stashed
=usage
$args->stashed; # {...}
=description
The stashed method returns the stashed data associated with the object.
=signature
stashed() : HashRef
=type
method
=cut
# TESTING
use Data::Object::Args;
can_ok "Data::Object::Args", "stashed";
local @ARGV = ('--command', 'post', '--action', 'users');
my $data = Data::Object::Args->new(
named => { command => 0, action => 2 }
);
is_deeply $data->stashed, {
'0' => '--command',
'1' => 'post',
'2' => '--action',
'3' => 'users'
};
ok 1 and done_testing;
( run in 0.821 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )