Skip to content

Commit 4ade099

Browse files
committed
Remove indirect test of Exception.resumable
That method is broken and will be removed for the time being and this test doesn't test the method itself, but only that concreteness exception gets thrown when this method is called on the type object. https://irclog.perlgeek.de/perl6/2017-05-04#i_14532712 https://irclog.perlgeek.de/perl6/2017-05-04#i_14532815
1 parent 07f5a45 commit 4ade099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S32-exceptions/misc.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use lib "t/spec/packages";
55
use Test;
66
use Test::Util;
77

8-
plan 427;
8+
plan 426;
99

1010
throws-like '42 +', Exception, "missing rhs of infix", message => rx/term/;
1111

@@ -792,7 +792,7 @@ ok Exception.new.Str.chars, "Exception.new.Str produces some default text";
792792
ok X::AdHoc.new.gist ~~ m:i/explain/,
793793
"X::AdHoc.new.gist mentions the word 'explain'";
794794

795-
for <fail die throw rethrow resumable resume> -> $meth {
795+
for <fail die throw rethrow resume> -> $meth {
796796
throws-like 'X::NYI.' ~ $meth, X::Parameter::InvalidConcreteness,
797797
should-be-concrete => 'True',
798798
param-is-invocant => 'True',

0 commit comments

Comments
 (0)