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) == ___ assert Process.alive?(pid) == ___
end 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 koan "Processes can send and receive messages" do
send self, "hola!" send self, "hola!"

View File

@@ -8,7 +8,6 @@ defmodule ProcessesTests do
:running, :running,
true, true,
true, true,
true,
"hola!", "hola!",
{:multiple, ["hola!", "como se llama?"]}, {:multiple, ["hola!", "como se llama?"]},
:how_are_you?, :how_are_you?,