Help for this page

Select Code to Download


  1. or download this
    if (caller) {
    ...
    }
    
  2. or download this
    unless ( caller ) {
        # here go the tests that are only called when the module is run as
    +:
        # perl Module.pm
    }
    
  3. or download this
    return 1 if caller; # end of the module's own code
    
    # Test Code goes here