Help for this page

Select Code to Download


  1. or download this
    is( $^W, 1, 'warnings are on' );
    require ThirdPartyModule;
    ThirdPartyModule->import;
    is( $^W, 1, 'warnings are still on' );
    
  2. or download this
    BEGIN{is( $^W, 1, 'warnings are on' )}
    use ThirdPartyModule;
    BEGIN{is( $^W, 1, 'warnings are still on' )}