ExUnit v1.10.3 ExUnit.TestModule View Source
A struct that keeps information about the test module.
It is received by formatters and contains the following fields:
:name- the test module name:state- the test error state (seet:ExUnit.state/0):tests- all tests in this module
Link to this section Summary
Link to this section Types
Specs
t() :: %ExUnit.TestModule{
name: module(),
state: ExUnit.state(),
tests: [ExUnit.Test.t()]
}