Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
niecza fudge
  • Loading branch information
coke committed Sep 11, 2013
1 parent 7975698 commit a993413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions S02-types/set.t
Expand Up @@ -166,6 +166,7 @@ sub showset($s) { $s.keys.sort.join(' ') }
is $s.list.grep(Str).elems, 3, "... all of which are Str";
isa_ok $s.pairs.elems, 3, ".pairs returns 3 things";
is $s.pairs.grep(Pair).elems, 3, "... all of which are Pair";
#?niecza 2 todo
is $s.pairs.grep({ .key ~~ Str }).elems, 3, "... the keys of which are Strs";
is $s.pairs.grep({ .value ~~ Bool }).elems, 3, "... and the values of which are Bool";
#?rakudo skip "Set is no longer Iterable"
Expand Down
1 change: 1 addition & 0 deletions S14-roles/attributes.t
Expand Up @@ -51,6 +51,7 @@ class C5 does R4 {
is C5.new().bar(), [], 'Composing an attribute into a class that already has one works';

#?pugs skip 'Cannot cast into Hash'
#?niecza skip 'Unhandled exception: Attribute %!e in C6 is defined in C6 but not R6'
{
role R6 {
has %!e;
Expand Down

0 comments on commit a993413

Please sign in to comment.