See Original text in context
multi sub can-ok(Mu , Str , = "..." )
Marks a test as passed if the given $var
can run the method named $meth
. The function accepts an optional description. For instance:
;my = Womble.new;# with automatically generated test descriptioncan-ok , 'collect-rubbish';# => An object of type 'Womble' can do the method 'collect-rubbish'# with human-generated test descriptioncan-ok , 'collect-rubbish', "Wombles can collect rubbish";# => Wombles can collect rubbish