Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oops, didn't realise skip comments were special. flussence--
  • Loading branch information
Anthony Parsons committed Jul 12, 2011
1 parent 5f09039 commit 632918e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions S32-str/sprintf.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 43;
plan 44;

# L<S32::Str/Str/"identical to" "C library sprintf">

Expand Down Expand Up @@ -60,8 +60,10 @@ is sprintf('%s', -NaN), NaN, 'sprintf %s handles NaN';
is sprintf('%s', Inf), Inf, 'sprintf %s handles Inf';
is sprintf('%s', -Inf), -Inf, 'sprintf %s handles Inf';

#?rakudo skip "%\d$ doesn't work in master (as of 2010-07)"
#?rakudo skip "doesn't work in master (as of 2010-07)"
{
is sprintf('%d %1$x %1$o', 12), '12 c 14', 'positional argument specifier $';
}

# RT #74610
dies_ok {sprintf "%s"}, 'missing sprintf string argument';
Expand Down

0 comments on commit 632918e

Please sign in to comment.