ExUnited v0.1.4 ExUnited.Node View Source

A struct containing information about a spawned node for use in ExUnit tests:

  • :node - the node name of the spawned node
  • :port - the corresponding Port reference of the spawned node
  • :command - the command used for spawning the node
  • :env - the list containing environment variables used spawning the node

See ExUnited.Spawn.summon/2 for more information.

Link to this section Summary

Link to this section Types

Link to this type

t()

View Source
t() :: %ExUnited.Node{
  command: binary(),
  env: [{charlist(), charlist()}],
  node: node(),
  port: port()
}