9 lines
156 B
Elixir
9 lines
156 B
Elixir
defmodule WhisperServerTest do
|
|
use ExUnit.Case
|
|
doctest WhisperServer
|
|
|
|
test "greets the world" do
|
|
assert WhisperServer.hello() == :world
|
|
end
|
|
end
|