Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Test for RT#115658.
  • Loading branch information
jnthn committed Apr 9, 2013
1 parent 5058d2a commit 4ac2c2b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion S12-introspection/methods.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 50;
plan 52;

=begin pod
Expand Down Expand Up @@ -144,4 +144,9 @@ is @methods[0].name, 'bar', 'methods call found public method in subclass (with
'methods call with :private found private method in subclass (with :local)';
}

{
lives_ok { Sub.^methods.gist }, 'Can .gist methods of a subroutine';
lives_ok { Sub.^methods.perl }, 'Can .perl methods of a subroutine';
}

# vim: ft=perl6

0 comments on commit 4ac2c2b

Please sign in to comment.