Skip to content

Commit

Permalink
Add test for RT#77752. Should be closeable.
Browse files Browse the repository at this point in the history
  • Loading branch information
skids committed Jan 31, 2015
1 parent 3a2c7f8 commit 92b416c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion S06-advanced/callframe.t
Expand Up @@ -2,7 +2,7 @@ use v6;
use Test;

#?niecza emit plan 8; #
plan 9;
plan 11;

# this test file contains tests for line numbers, among other things
# so it's extremely important not to randomly insert or delete lines.
Expand Down Expand Up @@ -42,6 +42,11 @@ f();
is $x, 23, '$x successfully modified';
is $y, 353, '$y not modified';

# RT #77752
is index(callframe.perl,"CallFrame.new("), 0, 'CallFrame.perl works';
# (Could probably be more readable, currently same as .perl)
is index(callframe.gist,"CallFrame.new("), 0, 'CallFrame.gist works';

done();

# vim: ft=perl6

0 comments on commit 92b416c

Please sign in to comment.