Skip to content

Commit

Permalink
Test::done is now done-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
niner committed Aug 30, 2015
1 parent fde9468 commit 1048ed0
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion t/autoload.t
Expand Up @@ -20,6 +20,6 @@ $p5.run(q:heredoc/PERL5/);
is($p5.invoke('Foo', 'foo'), 'autoload');
is($p5.invoke('Foo', 'new').bar, 'autoload');

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/can.t
Expand Up @@ -37,6 +37,6 @@ is($p5.call('call_foo_via_can', $foo), 'foo');
ok(not $p5.call('can_on_perl6_object_package', 'can'));
ok(not $p5.call('can_on_perl6_object_package', 'non_existing'));

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/eval_p6_in_p5.t
Expand Up @@ -10,7 +10,7 @@ is($p5.run(q:to/PERL5/), 2);
v6::run('1 + 1');
PERL5

done;
done-testing;

$p5.DESTROY;

Expand Down
2 changes: 1 addition & 1 deletion t/exceptions.t
Expand Up @@ -117,6 +117,6 @@ is $p5.call('test_foo', Foo.new), 'foo';
}
}

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/file_handles.t
Expand Up @@ -30,6 +30,6 @@ $p5.run(q/

is $p5.call('bar', $filehandle), 'test!';

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/from.t
Expand Up @@ -13,6 +13,6 @@ is(P5Import::p5_ok(1), 1);
is(p5_ok(1), 1, "importing subs works");
is(P5Import::import_called(), 1);

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/invoke.t
Expand Up @@ -38,6 +38,6 @@ my @a = $foo.nothing;
is($foo.count_args($foo.nothing), 1);
is($foo.count_args($foo.empty_hash), 2);

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/overload.t
Expand Up @@ -34,6 +34,6 @@ my $bar = $p5.invoke('Bar', 'new', 'a string!');
isnt("$bar", 'a string!');
like("$bar", /Perl5Object\<\d+\>/);

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/p5_to_p6.t
Expand Up @@ -30,6 +30,6 @@ is $p5.run('

$p5.DESTROY;

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/stringify.t
Expand Up @@ -24,6 +24,6 @@ $p5.run(q:to/PERL5/);
is($p5.call('stringify', Foo.new), 'Foo!');
like($p5.call('stringify', Bar.new), /Bar\<\d+\>/);

done;
done-testing;

# vim: ft=perl6
2 changes: 1 addition & 1 deletion t/v6.t
Expand Up @@ -36,6 +36,6 @@ ok(
'P5 subclass of P6 extended P5 class isa P5 subclass',
);

done;
done-testing;

# vim: ft=perl6

0 comments on commit 1048ed0

Please sign in to comment.