From: John Napiorkowski Date: Mon, 30 Mar 2009 00:23:31 +0000 (+0000) Subject: minor docs X-Git-Tag: 0.01~44 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f510c7d205ff96b1623b932000f5928d7ccdfe9b;p=gitmo%2FMooseX-Dependent.git minor docs --- diff --git a/t/02-depending.t b/t/02-depending.t index 9fe2e33..0305d38 100644 --- a/t/02-depending.t +++ b/t/02-depending.t @@ -37,6 +37,8 @@ use Test::More tests=>15; { Int, sub { my ($dependent_int, $constraining_arrayref) = @_; + ## Yes, this is braindead way to check for uniques in an array + ## but this doesn't require additional dependencies. (grep { $_ == $dependent_int} @$constraining_arrayref) ? 0:1 }, ArrayRef[Int],