]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - lib/Test/Valgrind/Command/Aggregate.pm
This is 1.10
[perl/modules/Test-Valgrind.git] / lib / Test / Valgrind / Command / Aggregate.pm
1 package Test::Valgrind::Command::Aggregate;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 Test::Valgrind::Command::Aggregate - A Test::Valgrind command that aggregates several other commands.
9
10 =head1 VERSION
11
12 Version 1.10
13
14 =cut
15
16 our $VERSION = '1.10';
17
18 =head1 DESCRIPTION
19
20 This command groups several commands together, which the session will run under the same action.
21
22 =cut
23
24 use Scalar::Util ();
25
26 use base qw/Test::Valgrind::Command Test::Valgrind::Carp/;
27
28 =head1 METHODS
29
30 This class inherits L<Test::Valgrind::Command>.
31
32 =head2 C<< new commands => \@commands, ... >>
33
34 =cut
35
36 my $all_cmds = sub {
37  for (@{$_[0]}) {
38   return 0 unless Scalar::Util::blessed($_)
39                                          and $_->isa('Test::Valgrind::Command');
40  }
41  return 1;
42 };
43
44 sub new {
45  my $class = shift;
46  $class = ref($class) || $class;
47
48  my %args = @_;
49
50  my $cmds = delete $args{commands};
51  $class->_croak('Invalid commands list')
52                    unless $cmds and ref $cmds eq 'ARRAY' and $all_cmds->($cmds);
53
54  my $self = bless $class->SUPER::new(), $class;
55
56  $self->{commands} = [ @$cmds ];
57
58  $self;
59 }
60
61 =head2 C<commands>
62
63 Read-only accessor for the C<commands> option.
64
65 =cut
66
67 sub commands { @{$_[0]->{commands} || []} }
68
69 =head1 SEE ALSO
70
71 L<Test::Valgrind>, L<Test::Valgrind::Command>.
72
73 =head1 AUTHOR
74
75 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
76
77 You can contact me by mail or on C<irc.perl.org> (vincent).
78
79 =head1 BUGS
80
81 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>.
82 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
83
84 =head1 SUPPORT
85
86 You can find documentation for this module with the perldoc command.
87
88     perldoc Test::Valgrind::Command::Aggregate
89
90 =head1 COPYRIGHT & LICENSE
91
92 Copyright 2009 Vincent Pit, all rights reserved.
93
94 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
95
96 =cut
97
98 1; # End of Test::Valgrind::Command::Aggregate