Remove other process killing example

The narrative no longer reads consistently... Just 🔪 it
This commit is contained in:
Jay Hayes
2016-05-04 15:29:20 -05:00
parent 12681f3aa2
commit e4771a46a4
2 changed files with 0 additions and 8 deletions

View File

@@ -21,13 +21,6 @@ defmodule Processes do
assert Process.alive?(pid) == ___
end
koan "However, trying to exit normally has no effect" do
pid = spawn(fn -> receive do end end)
Process.exit(pid, :normal)
assert Process.alive?(pid) == ___
end
koan "Processes can send and receive messages" do
send self, "hola!"