ExExample.Run (ExExample v0.1.2)

View Source

I am the result of running an example.

I contain meta-data about this particular invocation such as whether the example was found in cache, the state of its dependencies, and the key.

Summary

Types

t()

@type t() :: %ExExample.Run{
  cached: boolean(),
  failed: [ExExample.dependency()],
  key: ExExample.Cache.Key.t() | nil,
  no_cache: [ExExample.dependency()],
  result: ExExample.Cache.Result.t() | nil,
  skipped: [ExExample.dependency()],
  success: [ExExample.dependency()]
}