Skip to content

Commit

Permalink
nom fudging
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Sep 14, 2011
1 parent 2eddda3 commit 698a5e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions S03-smartmatch/any-array.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ plan 6;

my $o = TestArraySmartmatch.new(obj => (1, 2, 4));

#?rakudo todo 'nom regression'
ok ($o ~~ [1, 2, 4]), 'Any ~~ Array (basic, +)';
ok !($o ~~ [1, 5, 4]), 'Any ~~ Array (basic, -)';
#?rakudo todo 'nom regression'
ok ($o ~~ [1, *]), 'Any ~~ Array (dwim, +)';
ok !($o ~~ [8, *]), 'Any ~~ Array (dwim, -)';
ok (1 ~~ [1]), 'Any ~~ Array (Int, +)';
Expand Down

0 comments on commit 698a5e1

Please sign in to comment.