Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[t/setting] delete an outdated test
  • Loading branch information
moritz committed May 13, 2011
1 parent ba5200b commit 509350b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions t/setting/01-resizablepmcarray.t
Expand Up @@ -5,7 +5,7 @@ pir::load_bytecode('nqp-setting.pbc');
my @array := <0 1 2>;
my @reversed := @array.reverse();

plan(10);
plan(9);

ok( @reversed[0] == 2, 'First element correct');
ok( @reversed[1] == 1, 'Second element correct');
Expand All @@ -14,8 +14,6 @@ ok( @reversed[2] == 0, 'Third element correct');
my $join := @array.join('|');
ok( $join eq '0|1|2', 'Join elements');

ok( join(':', 'foo', 'bar', 'baz') eq 'foo:bar:baz', 'Join as standalone function');

my @test := <apple banana cherry>;
ok( @test.exists(2), 'Item exists at @test[2]' );
ok( !@test.exists(3), 'Item does not exist at @test[3]');
Expand Down

0 comments on commit 509350b

Please sign in to comment.