Skip to content

Commit

Permalink
Removed references to rakudo issues from test names
Browse files Browse the repository at this point in the history
  • Loading branch information
vrurg committed Feb 6, 2019
1 parent b3c681d commit f7a0e60
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions S12-methods/qualified.t
Expand Up @@ -44,7 +44,8 @@ subtest "simple" => {
throws-like '.::', X::Syntax::Malformed, 'empty name in qualified method call';
}

subtest "inheritance (github issue #2657)" => {
subtest "inheritance" => {
# rakudo github issue #2657
plan 6;

my class Parent {
Expand Down Expand Up @@ -97,7 +98,8 @@ subtest "inheritance (github issue #2657)" => {
is( $inst.R0::on_R0, "R0::on_R0", "Indirect qualification on the object");
}

subtest "puned role: github issue #2659" => {
subtest "puned role" => {
# rakudo github issue #2659
plan 2;
my role R1 {
method foo {
Expand All @@ -117,7 +119,8 @@ subtest "puned role: github issue #2659" => {
is( $inst.foo, "Foo::foo » R1::foo", "callsame works for a punned role via a child class" );
}

subtest "run-time does: github issue #2282" => {
subtest "run-time does" => {
# rakudo github issue #2282
my role Foo1 { method foo { "Foo1::foo"; } }
my role Foo2 { method foo { "Foo2::foo"; } }
my role Foo3 { method foo { "Foo3::foo"; } }
Expand Down

0 comments on commit f7a0e60

Please sign in to comment.