Suppress empty #ifdef blocks in embed.pl
[p5sagit/p5-mst-13.2.git] / lib / assertions / activate.pm
CommitLineData
06492da6 1package assertions::activate;
2
3our $VERSION = '0.01';
4
5# use strict;
6# use warnings;
7
8sub import {
9 shift;
10 push @{^ASSERTING}, ( map { qr/^$_$/ } @_) ;
11}
12
131;
14__END__
15
16=head1 NAME
17
18assertions::activate - assertions activation
19
20=head1 SYNOPSIS
21
22 use assertions::activate 'Foo', 'bar', 'Foo::boz::.*' ;
23
24=head1 ABSTRACT
25
26C<assertions::activate> module is used to configure assertion
27execution.
28
29=head1 DESCRIPTION
30
31
32
33=head2 EXPORT
34
35None by default.
36
37=head1 SEE ALSO
38
39L<assertions>
40
41=head1 AUTHOR
42
43Salvador Fandiño, E<lt>sfandino@yahoo.comE<gt>
44
45=head1 COPYRIGHT AND LICENSE
46
47Copyright 2002 by Salvador Fandiño
48
49This library is free software; you can redistribute it and/or modify
50it under the same terms as Perl itself.
51
52=cut