Reset of gen_servers for testing

Tim Buchwaldt 8c669c62c2 Update readme hace 7 años
config db2dfb96a0 Import hace 7 años
lib 67e4768add Default arguments when no register_gen_reset was called hace 7 años
test 7c1e6daae5 Format hace 7 años
.formatter.exs db2dfb96a0 Import hace 7 años
.gitignore db2dfb96a0 Import hace 7 años
README.md 8c669c62c2 Update readme hace 7 años
mix.exs db2dfb96a0 Import hace 7 años

README.md

GenReset

Bored of resetting GenServers manually during testing? I was, so I built this.

Installation

Add gen_reset to your dependencies. Then add use GenReset after your use GenServer line. A tracking server is automatically started that allows you to reset all servers at the same time: GenServer.Tracker.reset() - you can put this into your setup block.

def deps do
  [
    {:gen_reset, git: "https://git.chaos.koeln/tim/gen_reset.git"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/gen_reset.