The two BEGIN blocks in your second snippet will do the same thing as the three BEGIN blocks in your first snippet, but they are not equivalent.

  1. Compile first BEGIN block.
    1. Compile require Test::More;.
    2. Compile import Test::More;.
  2. Execute first BEGIN block.
    1. Execute require Test::More;.
    2. Execute import Test::More;.
  3. Compile second BEGIN block.
    1. Compile use_ok 'Module::A'.
  4. Execute second BEGIN block.
    1. Execute use_ok 'Module::A'.
  5. Compile third BEGIN block.
    1. Compile use_ok 'Module::B'.
  6. Execute third BEGIN block.
    1. Execute use_ok 'Module::B'.
  7. Compile done_testing;.
  8. End of compile phase.
  9. Execute done_testing;.

vs

  1. Compile first BEGIN block.
    1. Compile require Test::More;.
    2. Compile import Test::More;.
  2. Execute first BEGIN block.
    1. Execute require Test::More;.
    2. Execute import Test::More;.
  3. Compile second BEGIN block.
    1. Compile use_ok 'Module::A'.
    2. Compile use_ok 'Module::B'.
  4. Execute second BEGIN block.
    1. Execute use_ok 'Module::A'.
    2. Execute use_ok 'Module::B'.
  5. Compile done_testing;.
  6. End of compile phase.
  7. Execute done_testing;.

Or in short,

  1. ...
  2. Compile use_ok 'Module::A'.
  3. Execute use_ok 'Module::A'.
  4. Compile use_ok 'Module::B'.
  5. Execute use_ok 'Module::B'.
  6. ...

vs

  1. ...
  2. Compile use_ok 'Module::A'.
  3. Compile use_ok 'Module::B'.
  4. Execute use_ok 'Module::A'.
  5. Execute use_ok 'Module::B'.
  6. ...

In the first, use_ok 'Module::A' could have an effect on how use_ok 'Module::B' is compiled. In the second, it can't.

I agree with Corion, though. There's no reason to use use_ok.

use Test::More tests => 1; use Module::A; use Module::B; pass("Loading modules"); 1;

In reply to Re: Multiple BEGIN blocks in Test::More by ikegami
in thread Multiple BEGIN blocks in Test::More by j1n3l0

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.