]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blob - t/methods/str/undef.t
Importing re-engine-Plugin-0.02.tar.gz
[perl/modules/re-engine-Plugin.git] / t / methods / str / undef.t
1 use strict;
2 use Test::More tests => 3;
3 use re::engine::Plugin (
4     comp => sub {
5         my ($re, $str) = @_;
6
7         # Runs three times apperently.
8         is($re->str, undef, 'str is undef');
9
10         return;
11     },
12 );
13
14 qr/pattern/;