Help for this page

Select Code to Download


  1. or download this
        warn "DV:  " . \%default_values;
        my $self = ref($class) ? bless( +{ %default_values }, ref($class) 
    +)
                               : bless( +{ %default_values }, $class );
        warn "self:  " . $self;
    
  2. or download this
    failsafe( [
        'SUBJECT' => 'The quick brown fox jumps over the lazy dog',
    ...
    ], 
        "^Module NAME contains illegal characters",
        "Perl 4-style single-quote path separators no longer supported");
    
  3. or download this
    failsafe( [
        'NAME'     => 'ABC::XYZ',
    ...
    ], 
        "^CPAN IDs are 3-9 characters",
        "Constructor correctly failed due to CPANID > 9 characters");
    
  4. or download this
    failsafe( [
        'NAME'     => 'ABC::XYZ',
    ...
    ], 
        "^CPAN IDs are 3-9 characters",
        "Constructor correctly failed due to CPANID < 3 characters");
    
  5. or download this
    failsafe( [
        'NAME'     => 'ABC::Alpha',
    ...
        "^EMAIL addresses need to have an at sign",
    
        "Constructor correctly failed; e-mail must have '\@' sign");
    
  6. or download this
    not ok 22 - Constructor correctly failed; e-mail must have '@' sign
    
    ...
    # No such file or directory at t\001_load.t line 87
    # '
    #     doesn't match '(?-xism:^EMAIL addresses need to have an at sign)
    +'