Remove process about killing others 😆

This commit is contained in:
Jay Hayes
2016-05-04 15:13:35 -05:00
parent f7cced5913
commit 4e4e35f575
2 changed files with 0 additions and 9 deletions

View File

@@ -21,14 +21,6 @@ defmodule Processes do
assert Process.alive?(pid) == ___ assert Process.alive?(pid) == ___
end end
koan "You can kill processes other than yourself" do
pid = spawn(fn -> receive do end end)
assert Process.alive?(pid) == ___
Process.exit(pid, :kill)
assert Process.alive?(pid) == ___
end
koan "However, trying to exit normally has no effect" do koan "However, trying to exit normally has no effect" do
pid = spawn(fn -> receive do end end) pid = spawn(fn -> receive do end end)
Process.exit(pid, :normal) Process.exit(pid, :normal)

View File

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