Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
more rakudo unfudges
  • Loading branch information
moritz committed Jan 1, 2012
1 parent d888c1c commit 2e37eb9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions S02-types/declare.t
Expand Up @@ -71,7 +71,6 @@ plan 79;
# mutable (container) types, such as Scalar, Array, Hash, Buf, Routine, Module
# Buf nacpoi

#?rakudo skip 'Scalar not implemented'
{
my Scalar $brode;
isa_ok($brode, Scalar);
Expand Down Expand Up @@ -380,7 +379,6 @@ plan 79;
isa_ok($mapti, Matcher);
}

#?rakudo skip 'Proxy isa not implemented'
#?niecza skip 'Proxy not implemented'
{
my Proxy $krati;
Expand Down
1 change: 0 additions & 1 deletion S03-operators/context-forcers.t
Expand Up @@ -176,7 +176,6 @@ sub eval_elsewhere($code){ eval($code) }
# int context
# tested in t/spec/S32-num/int.t

#?rakudo skip 'TODO: @(), list assignment'
{
my $x = [0, 100, 280, 33, 400, 5665];

Expand Down
3 changes: 0 additions & 3 deletions S32-container/zip.t
Expand Up @@ -50,14 +50,11 @@ plan 12;
my $todo = 'Seq(Seq(0,2),1), Seq(Seq(0,2),1), Seq(Mu,5), Seq(Mu,7)';
my @e = eval $todo;

#?rakudo emit #
my @z; @z = zip(zip(@a; @b); @c);
my @x; @x = ((@a Z @b) Z @c);

#?pugs 2 todo 'needs Seq'
#?rakudo skip 'zip() and semilists'
is(~@z, ~@e, "zip of zipped arrays with other array");
#?rakudo skip 'test broken?'
is(~@x, ~@e, "also as Z");
};

Expand Down
1 change: 0 additions & 1 deletion integration/advent2009-day09.t
Expand Up @@ -74,7 +74,6 @@ dies_ok {eval 'namen(@te)' }, 'Autoflattening doesnt exist';
is (namen(|@te)), ('a','b','c'), "Put a | in front of the variable, and you're ok!";

is <734043054508967647390469416144647854399310>.comb(/.**7/).join('|') , '7340430|5450896|7647390|4694161|4464785|4399310' , 'Test one liner at end of post (part1)';
#?rakudo skip "too few positional arguments: 2 passed, 3 (or more) expected"
{
is '7340430'.fmt("%b").trans("01" => " #") , '### ## ### ' , 'Test one liner at end of post (part2)';
}
Expand Down

0 comments on commit 2e37eb9

Please sign in to comment.