diff options
| author | Simponic <loganhunt@simponic.xyz> | 2022-12-19 01:37:10 -0700 |
|---|---|---|
| committer | Simponic <loganhunt@simponic.xyz> | 2022-12-19 01:39:10 -0700 |
| commit | 9cdfb6eb9cd30c4e06a7d9fef53e519983827d81 (patch) | |
| tree | 4622a1809df6a6424f1b5f9f10c72dd02f9fc176 /test | |
| download | chessh-9cdfb6eb9cd30c4e06a7d9fef53e519983827d81.tar.gz chessh-9cdfb6eb9cd30c4e06a7d9fef53e519983827d81.zip | |
Initial commit!
Diffstat (limited to 'test')
| -rw-r--r-- | test/server_test.exs | 8 | ||||
| -rw-r--r-- | test/test_helper.exs | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/server_test.exs b/test/server_test.exs new file mode 100644 index 0000000..d710e5c --- /dev/null +++ b/test/server_test.exs @@ -0,0 +1,8 @@ +defmodule ChesshTest do + use ExUnit.Case + doctest Chessh + + test "greets the world" do + assert Chessh.hello() == :world + end +end diff --git a/test/test_helper.exs b/test/test_helper.exs new file mode 100644 index 0000000..869559e --- /dev/null +++ b/test/test_helper.exs @@ -0,0 +1 @@ +ExUnit.start() |
