sub can-ok
Documentation for sub can-ok
assembled from the following types:
module Test
From Test
(Test) sub can-ok
Defined as:
multi sub can-ok(Mu , Str , = "..." )
Marks a test as passed if the given $variable
can run the given $method-name
. 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