diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-09 15:02:27 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-09 15:02:27 +0200 |
commit | 782ca010fbc57025e4c69fa71085bb6997af23c5 (patch) | |
tree | 3d7f966848109e2e105d1962095cb1ccd93f166f /test |
Initial commit
Diffstat (limited to 'test')
-rw-r--r-- | test/mystic_test.exs | 8 | ||||
-rw-r--r-- | test/test_helper.exs | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/mystic_test.exs b/test/mystic_test.exs new file mode 100644 index 0000000..4344354 --- /dev/null +++ b/test/mystic_test.exs @@ -0,0 +1,8 @@ +defmodule MysticTest do + use ExUnit.Case + doctest Mystic + + test "greets the world" do + assert Mystic.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() |