j1n3l0 has asked for the wisdom of the Perl Monks concerning the following question:
VSuse Test::More; BEGIN { use_ok 'Module::A' }; BEGIN { use_ok 'Module::B' }; done_testing;
Thanks :)use Test::More; BEGIN { use_ok 'Module::A'; use_ok 'Module::B'; }; done_testing;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Multiple BEGIN blocks in Test::More
by Corion (Patriarch) on Nov 23, 2011 at 14:24 UTC | |
|
Re: Multiple BEGIN blocks in Test::More
by ikegami (Patriarch) on Nov 23, 2011 at 17:18 UTC | |
|
Re: Multiple BEGIN blocks in Test::More
by j1n3l0 (Friar) on Nov 24, 2011 at 11:54 UTC |