Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge tests / marked as todo that seem not to blow up anymore
  • Loading branch information
lizmat committed Aug 26, 2013
1 parent ae3f5f8 commit 81aeb68
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion S02-magicals/dollar-underscore.t
Expand Up @@ -44,7 +44,7 @@ for @list -> $letter {
lives_ok { for @mutable_array { $_++ } }, 'default topic is rw by default';
}

#?rakudo skip 'nom regression RT #113904'
#RT #113904
{
$_ = 1;
my $tracker = '';
Expand Down
10 changes: 5 additions & 5 deletions S02-names/symbolic-deref.t
Expand Up @@ -124,25 +124,25 @@ my $outer = 'outside';
}

# Symbolic dereferentiation of globals *without the star*
#?rakudo skip 'NYI'
{
#?pugs skip 'Invalid sigil'
cmp_ok ::('$*IN'), &infix:<===>, $*IN,
#?rakudo todo 'no such symbol'
ok ::('$*IN') === $*IN,
"symbolic dereferentiation of globals works (3)";

cmp_ok &::("say"), &infix:<===>, &say,
ok &::("say") === &say,
"symbolic dereferentiation of CORE subs works (1)";
#?rakudo skip 'no such symbol'
ok &::("so")(42),
"symbolic dereferentiation of CORE subs works (2)";
is &::("truncate")(3.1), 3,
"symbolic dereferentiation of CORE subs works (3)";
}

# Symbolic dereferentiation of type vars
#?rakudo skip 'NYI'
#?niecza skip "Object reference not set to an instance of an object"
{
cmp_ok ::Array, &infix:<===>, ::("Array"),
ok ::Array === ::("Array"),
"symbolic dereferentiation of type vars works (1)";
}

Expand Down
2 changes: 1 addition & 1 deletion integration/99problems-21-to-30.t
Expand Up @@ -246,7 +246,7 @@ sub combination($n, @xs) {
# same frequency of length the ordering is unspecified, so this should be ok
}

#?rakudo skip 'autovivification'
#?rakudo todo 'autovivification'
#?niecza skip 'Unable to resolve method push in class Any'
#?pugs todo
{
Expand Down
2 changes: 1 addition & 1 deletion integration/advent2009-day06.t
Expand Up @@ -26,7 +26,7 @@ for @pi Z @pi-sin -> $elem, $elem-sin {
}
is ((-1, 0, 3, 42)>>.Str), ["-1", "0", "3", "42"], 'Hyperoperator used to call .Str on each list element';

#?rakudo skip "Cannot assign to readonly value"
#?rakudo todo "Cannot assign to readonly value"
#?niecza todo
{
is (@a-copy = @a; @a-copy >>/=>> 2; @a-copy), [2, 3, 4, 5], 'in-place operators work';
Expand Down

0 comments on commit 81aeb68

Please sign in to comment.