]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blob - str/undef.t
This is 0.12
[perl/modules/re-engine-Plugin.git] / 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/;