Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 1.51 KB

Utils.md

File metadata and controls

49 lines (28 loc) · 1.51 KB

NAME

Test::Async::Utils - Test::Async utilities

EXPORTED ENUMS

TestMode

Suite mode of operation:

  • TMSequential - all child suites are invoked sequentially as appear in the code

  • TMAsync – child suites are invoked asynchronously as appear in the code

  • TMRandom - child suites are invoked in random order after the suite code is done

TestStage

Suite lifecycle stages: TSInitializing, TSInProgress, TSFinishing, TSFinished, TSDismissed.

TestResult

Test outcome codes: TRPassed, TRFailed, TRSkipped

EXPORTED ROUTINES

test-result(Bool $cond, Associative :$fail, Associative :$success -- Test::Async::Result)>

Creates a Test::Async::Result object using the provided parameters. $fail and $success are shortcut names for corresponding -profile attributes of Test::Async::Result class. Note that prior to storing the profiles in the object all values of the first-level keys are getting de-containerized to get any Positional attributes of Event objects initialized properly.

stringify(Mu \obj -- Str:D)>

Tries to stringify the obj in the most appropriate way. Use it to unify the look of test comments.

AUTHOR

Vadim Belman vrurg@cpan.org