]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - lib/Test/Valgrind/Carp.pm
This is 1.10
[perl/modules/Test-Valgrind.git] / lib / Test / Valgrind / Carp.pm
1 package Test::Valgrind::Carp;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 Test::Valgrind::Carp - Carp-like private methods for Test::Valgrind objects.
9
10 =head1 VERSION
11
12 Version 1.10
13
14 =cut
15
16 our $VERSION = '1.10';
17
18 sub _croak {
19  shift;
20  require Carp;
21  local $Carp::CarpLevel = ($Carp::CarpLevel || 0) + 1;
22  Carp::croak(@_);
23 }
24
25 =head1 SEE ALSO
26
27 L<Test::Valgrind>.
28
29 =head1 AUTHOR
30
31 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
32
33 You can contact me by mail or on C<irc.perl.org> (vincent).
34
35 =head1 BUGS
36
37 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>.
38 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
39
40 =head1 SUPPORT
41
42 You can find documentation for this module with the perldoc command.
43
44     perldoc Test::Valgrind::Carp
45
46 =head1 COPYRIGHT & LICENSE
47
48 Copyright 2009 Vincent Pit, all rights reserved.
49
50 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
51
52 =cut
53
54 1; # End of Test::Valgrind::Carp