Add helpful message when processes koan assertion fails
This commit is contained in:
@@ -77,7 +77,10 @@ defmodule Processes do
|
|||||||
pid = spawn(greeter)
|
pid = spawn(greeter)
|
||||||
|
|
||||||
send(pid, {:hello, self()})
|
send(pid, {:hello, self()})
|
||||||
assert_receive ___
|
|
||||||
|
timeout = 100 # ms
|
||||||
|
failure_message = "Sorry, I didn't get the right message. Look at the message that is sent back very closely, and try again"
|
||||||
|
assert_receive ___, timeout, failure_message
|
||||||
end
|
end
|
||||||
|
|
||||||
def yelling_echo_loop do
|
def yelling_echo_loop do
|
||||||
|
|||||||
Reference in New Issue
Block a user