tvl-depot/assessments/semiprimes/server/test/server_test.exs
William Carroll 6ff814a6d3 Init Elixir project
Starting fresh with...

```shell
mix new server
```
2020-12-11 22:42:16 +00:00

8 lines
135 B
Elixir

defmodule ServerTest do
use ExUnit.Case
doctest Server
test "greets the world" do
assert Server.hello() == :world
end
end