Help for this page

Select Code to Download


  1. or download this
    package MyTest::Base;
    use strict;
    ...
    }
    
    1;
    
  2. or download this
    package MyTest::Lite;
    no autovivification;
    ...
    }
    
    1;
    
  3. or download this
    use MyTest::Lite;
    use strict;
    ...
    $lite -> chkAccessRight ( "app2" ) ;
    print "======================$/";
    $lite -> tryAccess (  "app1"  );
    
  4. or download this
    Can't call method "SUPER::chkAccessRight" on an undefined value at MyT
    +est/Lite.pm line 19.
    Lite chkAccessRight app2
    ...
    Lite tryAccess app1
    Base tryAccess guest app1
    Lite chkAccessRight guest app1