See Original text in context
multi sub does-ok(Mu , Mu , = "...")
Marks a test as passed if the given $var
can do the given role $type
. The function accepts an optional description of the test.
# create a Womble who can inventis Womble does Invent# ... and later in the testsuse Test;my = Tobermory.new;# with automatically generated test descriptiondoes-ok , Invent;# => The object does role Typedoes-ok , Invent, "Tobermory can invent";# => Tobermory can invent