Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Skip TODO tests that now fail fatally
  • Loading branch information
niner committed Aug 28, 2015
1 parent f5c11d0 commit 971583a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S12-introspection/WHAT.t
Expand Up @@ -88,7 +88,7 @@ my class H is Hash {};
{
my $a = Array[Int].new;
ok $a.WHAT === Array[Int], 'Array[Int].new default is Array';
#?rakudo todo "Foo[Int].new on scalars fails"
#?rakudo skip "Foo[Int].new on scalars fails"
ok $a[0].WHAT === Int, 'Array[Int].new[0] default is Int';
my $h = Hash[Int].new;
ok $h.WHAT === Hash[Int], 'Hash[Int].new default is Hash[Int]';
Expand All @@ -100,7 +100,7 @@ my class H is Hash {};
{
my $a = A[Int].new;
ok $a.WHAT === A[Int], 'A[Int].new default is A[Int]';
#?rakudo todo "Foo[Int].new on scalars fails"
#?rakudo skip "Foo[Int].new on scalars fails"
ok $a[0].WHAT === Int, 'A[Int].new[0] default is Int';
my $h = H[Int].new;
ok $h.WHAT === H[Int], 'H[Int].new default is H[Int]';
Expand Down

0 comments on commit 971583a

Please sign in to comment.