X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F10-good.t;h=d428d1fdf600d79f0ea08d7d9c12f93ab5fe33d5;hp=d6b4a6aea32dcbfed5804272d67d3edc11429cbe;hb=d8064d5f5037d23c51e6e62386f32e65cef50d33;hpb=a500e2e4c8ada4bd4c2cd5c76d2ac15214b42048 diff --git a/t/10-good.t b/t/10-good.t index d6b4a6a..d428d1f 100644 --- a/t/10-good.t +++ b/t/10-good.t @@ -9,42 +9,48 @@ package main; use strict; use warnings; -use Test::More tests => 49 * 4; +use Test::More tests => 52 * 4; my ($obj, $pkg, $cb, $x, @a); our $y; sub meh; { - local $/ = "####\n"; + local $/ = "####"; while () { chomp; - local $SIG{__WARN__} = sub { die 'warn:' . join(' ', @_) }; - { - use indirect; - eval "die qq{ok\\n}; $_"; - } - is($@, "ok\n", "use indirect: $_"); - { - no indirect; - eval "die qq{ok\n}; $_"; - } - is($@, "ok\n", "no indirect: $_"); - s/Hlagh/Dongs/g; - { - use indirect; - eval "die qq{ok\\n}; $_"; - } - is($@, "ok\n", "use indirect, defined: $_"); + s/\s*$//; + s/(.*?)$//m; + my ($skip, $prefix) = split /#+/, $1; + $skip = 0 unless defined $skip; + $prefix = '' unless defined $prefix; + s/\s*//; + +SKIP: { - no indirect; - eval "die qq{ok\\n}; $_"; + skip "$_: $skip" => 4 if eval $skip; + + local $SIG{__WARN__} = sub { die 'warn:' . join(' ', @_) }; + + eval "die qq{ok\\n}; $prefix; use indirect; $_"; + is($@, "ok\n", "use indirect: $_"); + + eval "die qq{ok\n}; $prefix; no indirect; $_"; + is($@, "ok\n", "no indirect: $_"); + + s/Hlagh/Dongs/g; + + eval "die qq{ok\\n}; $prefix; use indirect; $_"; + is($@, "ok\n", "use indirect, defined: $_"); + + eval "die qq{ok\\n}; $prefix; no indirect; $_"; + is($@, "ok\n", "no indirect, defined: $_"); } - is($@, "ok\n", "no indirect, defined: $_"); } } __DATA__ + $obj = Hlagh->new; #### $obj = Hlagh->new(); @@ -141,6 +147,10 @@ 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; #### @@ -153,6 +163,10 @@ 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"; #### @@ -162,8 +176,6 @@ $obj = "apple ${\(new Hlagh)} pear" #### $obj = "apple @{[new Hlagh]} pear" #### -s/dongs/new Hlagh/e; -#### exec $x $x, @a; #### exec { $a[0] } @a;