1 package Test::Valgrind::Command::Aggregate;
8 Test::Valgrind::Command::Aggregate - A Test::Valgrind command that aggregates several other commands.
16 our $VERSION = '1.17';
20 This command groups several commands together, which the session will run under the same action.
26 use base qw<Test::Valgrind::Command Test::Valgrind::Carp>;
30 This class inherits L<Test::Valgrind::Command>.
34 my $tvca = Test::Valgrind::Command::Aggregate->new(
35 commands => \@commands,
43 return 0 unless Scalar::Util::blessed($_)
44 and $_->isa('Test::Valgrind::Command');
51 $class = ref($class) || $class;
55 my $cmds = delete $args{commands};
56 $class->_croak('Invalid commands list')
57 unless $cmds and ref $cmds eq 'ARRAY' and $all_cmds->($cmds);
59 my $self = bless $class->SUPER::new(), $class;
61 $self->{commands} = [ @$cmds ];
68 my @commands = $tvca->commands;
70 Read-only accessor for the C<commands> option.
74 sub commands { @{$_[0]->{commands} || []} }
78 L<Test::Valgrind>, L<Test::Valgrind::Command>.
82 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
84 You can contact me by mail or on C<irc.perl.org> (vincent).
88 Please report any bugs or feature requests to C<bug-test-valgrind at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind>.
89 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
93 You can find documentation for this module with the perldoc command.
95 perldoc Test::Valgrind::Command::Aggregate
97 =head1 COPYRIGHT & LICENSE
99 Copyright 2009,2010,2011,2013,2015 Vincent Pit, all rights reserved.
101 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
105 1; # End of Test::Valgrind::Command::Aggregate