Help for this page

Select Code to Download


  1. or download this
    use Test::More;
    BEGIN { use_ok 'Module::A' };
    BEGIN { use_ok 'Module::B' };
    done_testing;
    
  2. or download this
    use Test::More;
    BEGIN { 
    ...
        use_ok 'Module::B';
    };
    done_testing;