X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F10-good.t;h=d428d1fdf600d79f0ea08d7d9c12f93ab5fe33d5;hb=0df47659c67c30deca9fc06d6c7643a886ddb7d8;hp=715136127bda47187d806208427188c3cdb95239;hpb=3b879bdf6ec7035d353f6c6fdeff405633dbf493;p=perl%2Fmodules%2Findirect.git diff --git a/t/10-good.t b/t/10-good.t index 7151361..d428d1f 100644 --- a/t/10-good.t +++ b/t/10-good.t @@ -11,38 +11,46 @@ use warnings; use Test::More tests => 52 * 4; -use feature 'state'; - my ($obj, $pkg, $cb, $x, @a); our $y; -state $z; sub meh; { - local $/ = "####\n"; + local $/ = "####"; while () { chomp; s/\s*$//; + s/(.*?)$//m; + my ($skip, $prefix) = split /#+/, $1; + $skip = 0 unless defined $skip; + $prefix = '' unless defined $prefix; + s/\s*//; + +SKIP: + { + skip "$_: $skip" => 4 if eval $skip; - local $SIG{__WARN__} = sub { die 'warn:' . join(' ', @_) }; + local $SIG{__WARN__} = sub { die 'warn:' . join(' ', @_) }; - eval "die qq{ok\\n}; use indirect; $_"; - is($@, "ok\n", "use indirect: $_"); + eval "die qq{ok\\n}; $prefix; use indirect; $_"; + is($@, "ok\n", "use indirect: $_"); - eval "die qq{ok\n}; no indirect; $_"; - is($@, "ok\n", "no indirect: $_"); + eval "die qq{ok\n}; $prefix; no indirect; $_"; + is($@, "ok\n", "no indirect: $_"); - s/Hlagh/Dongs/g; + s/Hlagh/Dongs/g; - eval "die qq{ok\\n}; use indirect; $_"; - is($@, "ok\n", "use indirect, defined: $_"); + eval "die qq{ok\\n}; $prefix; use indirect; $_"; + is($@, "ok\n", "use indirect, defined: $_"); - eval "die qq{ok\\n}; no indirect; $_"; - is($@, "ok\n", "no indirect, defined: $_"); + eval "die qq{ok\\n}; $prefix; no indirect; $_"; + is($@, "ok\n", "no indirect, defined: $_"); + } } } __DATA__ + $obj = Hlagh->new; #### $obj = Hlagh->new(); @@ -139,9 +147,9 @@ meh $x, 1, 2; meh $y; #### meh $y, 1, 2; -#### +#### $] < 5.010 # use feature 'state'; state $z meh $z; -#### +#### $] < 5.010 # use feature 'state'; state $z meh $z, 1, 2; #### print; @@ -155,9 +163,9 @@ print $x "oh hai\n"; print $y; #### print $y "dongs\n"; -#### +#### $] < 5.010 # use feature 'state'; state $z print $z; -#### +#### $] < 5.010 # use feature 'state'; state $z print $z "hlagh\n"; #### print STDOUT "bananananananana\n";