Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix test descriptions
  • Loading branch information
moritz committed Aug 8, 2011
1 parent a96285b commit c887819
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions S03-smartmatch/scalar-hash.t
Expand Up @@ -2,12 +2,12 @@ use v6;
use Test;
plan 3;

#L<S03/"Smart matching"/Scalar Hash hash entry existence>
#L<S03/"Smart matching"/Cool Hash hash entry existence>
{
my %h = (moep => 'foo', bar => Mu);
ok ('moep' ~~ %h), 'Scalar ~~ Hash (+, True)';
ok ('bar' ~~ %h), 'Scalar ~~ Hash (+, False)';
ok !('foo' ~~ %h), 'Scalar ~~ Hash (-)';
ok ('moep' ~~ %h), 'Cool ~~ Hash (+, True)';
ok ('bar' ~~ %h), 'Cool ~~ Hash (+, False)';
ok !('foo' ~~ %h), 'Cool ~~ Hash (-)';
}

done;
Expand Down

0 comments on commit c887819

Please sign in to comment.