Handle PERLIO= and document a bit.
[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;
8c63d938 10 @_='.*' unless @_;
8fa7688f 11 push @{^ASSERTING}, ( map { qr/^(?:$_)$/ } @_) ;
06492da6 12}
13
141;
15__END__
16
17=head1 NAME
18
19assertions::activate - assertions activation
20
21=head1 SYNOPSIS
22
23 use assertions::activate 'Foo', 'bar', 'Foo::boz::.*' ;
24
25=head1 ABSTRACT
26
27C<assertions::activate> module is used to configure assertion
28execution.
29
30=head1 DESCRIPTION
31
32
33
34=head2 EXPORT
35
36None by default.
37
38=head1 SEE ALSO
39
40L<assertions>
41
42=head1 AUTHOR
43
c54bef43 44Salvador FandiE<ntilde>o, E<lt>sfandino@yahoo.comE<gt>
06492da6 45
46=head1 COPYRIGHT AND LICENSE
47
c54bef43 48Copyright 2002 by Salvador FandiE<ntilde>o
06492da6 49
50This library is free software; you can redistribute it and/or modify
51it under the same terms as Perl itself.
52
53=cut