dipesh777 has asked for the wisdom of the Perl Monks concerning the following question:
I have written a .t files which calls and executes perl modules in it, here the problem is that the modules are called/executed at random order. Please let me know how they can be executed serially so that proper order is maintained with following code.
use Test::More qw(no_plan); use DIR1::Tests::UI::MyTest::Valid::LoadFromMenu; use DIR1::Tests::UI::MyTest::Valid::LoadFromLink; use DIR1::Tests::UI::MyTest::Valid::WriteOldlink; use DIR1::Tests::UI::MyTest::Valid::WriteNewlink; use DIR1::Tests::UI::MyTest::Valid::NewChoiceStartOver; use DIR1::Tests::UI::MyTest::Valid::NewComposeStartover; use DIR1::Tests::UI::MyTest::Valid::NewComposeStartover; use DIR1::Tests::UI::MyTest::Valid::SingleHash; use DIR1::Tests::UI::MyTest::Valid::SingleNewsletter;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem with orderly execution of test cases in .t file
by chromatic (Archbishop) on Jun 15, 2011 at 18:04 UTC | |
by Anonymous Monk on Jun 16, 2011 at 18:07 UTC | |
by chromatic (Archbishop) on Jun 16, 2011 at 19:14 UTC | |
|
Re: Problem with orderly execution of test cases in .t file
by locked_user sundialsvc4 (Abbot) on Jun 16, 2011 at 13:00 UTC |