6ff814a6d3
Starting fresh with... ```shell mix new server ```
8 lines
135 B
Elixir
8 lines
135 B
Elixir
defmodule ServerTest do
|
|
use ExUnit.Case
|
|
doctest Server
|
|
|
|
test "greets the world" do
|
|
assert Server.hello() == :world
|
|
end
|
|
end
|